Skip to content

Commit

Permalink
Release rustler 0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filmor committed Jul 9, 2024
1 parent 0a3e730 commit 566cc7c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
See [`UPGRADE.md`](./UPGRADE.md) for additional help when upgrading to newer
versions.

## [unreleased]
## [0.34.0] - 2024-07-09

### Added

Expand Down
4 changes: 2 additions & 2 deletions rustler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rustler"
description = "Safe Rust wrappers for creating Erlang NIF functions"
repository = "https://github.com/rusterlium/rustler"
version = "0.33.0" # rustler version
version = "0.34.0" # rustler version
authors = ["Hansihe <me@hansihe.com>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
Expand All @@ -23,7 +23,7 @@ serde = ["dep:serde"]

[dependencies]
inventory = "0.3"
rustler_codegen = { path = "../rustler_codegen", version = "0.33.0" }
rustler_codegen = { path = "../rustler_codegen", version = "0.34.0" }
rustler_sys = { path = "../rustler_sys", version = "~2.4.2" }
num-bigint = { version = "0.4", optional = true }
serde = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rustler_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rustler_codegen"
description = "Compiler plugin for Rustler"
repository = "https://github.com/rusterlium/rustler/tree/master/rustler_codegen"
version = "0.33.0" # rustler_codegen version
version = "0.34.0" # rustler_codegen version
authors = ["Hansihe <hansihe@hansihe.com>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion rustler_mix/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This package is available on [Hex.pm](https://hex.pm/packages/rustler). To insta
```elixir
def deps do
[
{:rustler, "~> 0.33.0", runtime: false}
{:rustler, "~> 0.34.0", runtime: false}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion rustler_mix/lib/rustler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@ defmodule Rustler do
|> Enum.map(fn version -> version["num"] end)
|> Enum.fetch!(0)
rescue
_ -> "0.33.0"
_ -> "0.34.0"
end
end
2 changes: 1 addition & 1 deletion rustler_mix/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Rustler.Mixfile do
use Mix.Project

@source_url "https://github.com/rusterlium/rustler"
@version "0.33.0"
@version "0.34.0"

def project do
[
Expand Down

0 comments on commit 566cc7c

Please sign in to comment.