Skip to content

Commit 566cc7c

Browse files
committed
Release rustler 0.34.0
1 parent 0a3e730 commit 566cc7c

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
See [`UPGRADE.md`](./UPGRADE.md) for additional help when upgrading to newer
99
versions.
1010

11-
## [unreleased]
11+
## [0.34.0] - 2024-07-09
1212

1313
### Added
1414

rustler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rustler"
33
description = "Safe Rust wrappers for creating Erlang NIF functions"
44
repository = "https://github.com/rusterlium/rustler"
5-
version = "0.33.0" # rustler version
5+
version = "0.34.0" # rustler version
66
authors = ["Hansihe <me@hansihe.com>"]
77
license = "MIT/Apache-2.0"
88
readme = "../README.md"
@@ -23,7 +23,7 @@ serde = ["dep:serde"]
2323

2424
[dependencies]
2525
inventory = "0.3"
26-
rustler_codegen = { path = "../rustler_codegen", version = "0.33.0" }
26+
rustler_codegen = { path = "../rustler_codegen", version = "0.34.0" }
2727
rustler_sys = { path = "../rustler_sys", version = "~2.4.2" }
2828
num-bigint = { version = "0.4", optional = true }
2929
serde = { version = "1", optional = true }

rustler_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rustler_codegen"
33
description = "Compiler plugin for Rustler"
44
repository = "https://github.com/rusterlium/rustler/tree/master/rustler_codegen"
5-
version = "0.33.0" # rustler_codegen version
5+
version = "0.34.0" # rustler_codegen version
66
authors = ["Hansihe <hansihe@hansihe.com>"]
77
license = "MIT/Apache-2.0"
88
readme = "../README.md"

rustler_mix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This package is available on [Hex.pm](https://hex.pm/packages/rustler). To insta
1515
```elixir
1616
def deps do
1717
[
18-
{:rustler, "~> 0.33.0", runtime: false}
18+
{:rustler, "~> 0.34.0", runtime: false}
1919
]
2020
end
2121
```

rustler_mix/lib/rustler.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ defmodule Rustler do
185185
|> Enum.map(fn version -> version["num"] end)
186186
|> Enum.fetch!(0)
187187
rescue
188-
_ -> "0.33.0"
188+
_ -> "0.34.0"
189189
end
190190
end

rustler_mix/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Rustler.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/rusterlium/rustler"
5-
@version "0.33.0"
5+
@version "0.34.0"
66

77
def project do
88
[

0 commit comments

Comments
 (0)