Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Jan 2, 2022
1 parent b449ec4 commit 44cfb36
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.2.3 (unreleased)
0.2.3 (02-01-2022)
=====
- Added `read_stream_available_frames` and `write_stream_available_frames` (#3).

Expand Down
7 changes: 4 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
(lang dune 2.0)
(version 0.2.2)
(lang dune 2.8)
(version 0.2.3)
(name portaudio)
(source (github savonet/ocaml-portaudio))
(license LGPL-2.1)
(authors "The Savonet Team <[email protected]>")
(maintainers "The Savonet Team <[email protected]>")

(generate_opam_files true)
(use_standard_c_and_cxx_flags false)

(package
(name portaudio)
(synopsis "Bindings for the portaudio library which provides high-level functions for using soundcards")
(depends
conf-portaudio
conf-pkg-config
(dune (>= 2.0))
dune
dune-configurator)
)
7 changes: 4 additions & 3 deletions portaudio.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.2.2"
version: "0.2.3"
synopsis:
"Bindings for the portaudio library which provides high-level functions for using soundcards"
maintainer: ["The Savonet Team <[email protected]>"]
Expand All @@ -11,11 +11,12 @@ bug-reports: "https://github.com/savonet/ocaml-portaudio/issues"
depends: [
"conf-portaudio"
"conf-pkg-config"
"dune" {>= "2.0"}
"dune" {>= "2.8"}
"dune-configurator"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {pinned}
["dune" "subst"] {dev}
[
"dune"
"build"
Expand Down
2 changes: 1 addition & 1 deletion src/config/discover.ml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let () =
~expr:"portaudio-2.0"
with
| Error msg -> failwith msg
| Ok deps -> deps )
| Ok deps -> deps)
in
C.Flags.write_sexp "c_flags.sexp" conf.cflags;
C.Flags.write_sexp "c_library_flags.sexp" conf.libs)

0 comments on commit 44cfb36

Please sign in to comment.