Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cellux committed Aug 19, 2023
1 parent 8f06856 commit cc0d683
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log

## [0.2.0] - 2023-08-19

### Fixed

- arrays of structs inside structs now work with any struct type
- maximum length of an array inside a struct was limited to 127, now it's 2147483647

## [0.1.0] - 2021-12-17

Initial release.

[0.2.0]: https://github.com/omkamra/jnr/tree/0.2.0
[0.1.0]: https://github.com/omkamra/jnr/tree/0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ Clojure:
## License
Copyright © 2021 Balázs Ruzsa
Copyright © 2023 Balázs Ruzsa
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject com.github.omkamra/jnr "0.1.0"
(defproject com.github.omkamra/jnr "0.2.0"
:description "A Clojure wrapper for JNR-FFI"
:url "https://github.com/omkamra/jnr"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.3"]
[com.github.jnr/jnr-ffi "2.2.10"]
[insn/insn "0.5.2"]]
[com.github.jnr/jnr-ffi "2.2.14"]
[insn/insn "0.5.4"]]
:profiles
{:dev {:resource-paths ["test-resources"]}})

0 comments on commit cc0d683

Please sign in to comment.