Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
benhaney committed Jun 16, 2023
1 parent d947207 commit d99cca4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 38 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1] - 2023-06-16
### Changed
- Bump `rustler` to 0.28 to support OTP 26

Expand Down Expand Up @@ -58,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release


[Unreleased]: https://github.com/benhaney/Jsonrs/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/benhaney/Jsonrs/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/benhaney/Jsonrs/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/benhaney/Jsonrs/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/benhaney/Jsonrs/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/benhaney/Jsonrs/compare/v0.1.6...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add Jsonrs as a dependency in your `mix.exs` file.

```elixir
def deps do
[{:jsonrs, "~> 0.3.0"}]
[{:jsonrs, "~> 0.3.1"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ defmodule Jsonrs.MixProject do

defp rustler_crates do
[
jsonrs: [path: "native/jsonrs", mode: if(Mix.env() == :prod, do: :release, else: :debug)]
jsonrs: [path: "native/jsonrs"]
]
end

Expand Down
34 changes: 1 addition & 33 deletions native/jsonrs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions native/jsonrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonrs"
version = "0.3.0"
version = "0.3.1"
authors = []
edition = "2018"

Expand All @@ -10,7 +10,7 @@ path = "src/lib.rs"
crate-type = ["dylib"]

[dependencies]
flate2 = { version = "1.0", features = ["zlib-ng"], default-features = false }
flate2 = "1.0"
rustler = "0.28.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit d99cca4

Please sign in to comment.