Skip to content

Commit

Permalink
(release) 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evnu committed Apr 24, 2023
1 parent 7eb6728 commit d4e0a7b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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.27.0" # rustler version
version = "0.28.0" # rustler version
authors = ["Hansihe <me@hansihe.com>"]
license = "MIT/Apache-2.0"
readme = "../README.md"
Expand All @@ -15,7 +15,7 @@ alternative_nif_init_name = []

[dependencies]
lazy_static = "1.4"
rustler_codegen = { path = "../rustler_codegen", version = "0.27.0", optional = true}
rustler_codegen = { path = "../rustler_codegen", version = "0.28.0", optional = true}
rustler_sys = { path = "../rustler_sys", version = "~2.2" }

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion rustler_bigint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ keywords = ["bigint", "Erlang", "Elixir"]

[dependencies]
num-bigint = {version = "0.4"}
rustler = {path = "../rustler", version = "0.27.0"}
rustler = {path = "../rustler", version = "0.28.0"}
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.27.0" # rustler_codegen version
version = "0.28.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.27.0"}
{:rustler, "~> 0.28.0"}
]
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 @@ -163,7 +163,7 @@ defmodule Rustler do
end

@doc false
def rustler_version, do: "0.27.0"
def rustler_version, do: "0.28.0"

@doc """
Supported NIF API versions.
Expand Down
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.27.0"
@version "0.28.0"

def project do
[
Expand Down

0 comments on commit d4e0a7b

Please sign in to comment.