Skip to content

Commit

Permalink
chore: Bump version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Mar 7, 2024
1 parent 1a0cc48 commit 85d2bde
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,18 @@

All notable changes to this project will be documented in this file.

## [0.1.1](https://github.com/vemonet/nanopub-rs/compare/v0.1.0..0.1.1) - 2024-03-06
## [0.1.2](https://github.com/vemonet/nanopub-rs/compare/v0.1.1..0.1.2) - 2024-03-07

### ⚙️ Continuous Integration

- Improve wheel building in build workflow, use the maturin gh action inspired from pydantic2 - ([d26d008](https://github.com/vemonet/nanopub-rs/commit/d26d008ef73abbabc0b540ec3e778e11460f6d2d))
- Fix wheel working dir - ([e3e0f30](https://github.com/vemonet/nanopub-rs/commit/e3e0f30bdc321034f47121a5e6e03b9eff682339))

### 🚜 Refactor

- Rename get_rdf() function to rdf() - ([bb28299](https://github.com/vemonet/nanopub-rs/commit/bb282990662ae0fdb284c6e005f6bab58d329cf6))

## [0.1.1](https://github.com/vemonet/nanopub-rs/compare/v0.1.0..v0.1.1) - 2024-03-06

### ⛰️ Features

Expand All @@ -17,6 +28,10 @@ All notable changes to this project will be documented in this file.
- Migrate docs from mdbook to material for mkdocs - ([d2785dc](https://github.com/vemonet/nanopub-rs/commit/d2785dc327be5bf875ca8c279a66f0f0d04bf12b))
- Add service worker to playground to speed up loading assets - ([e2f6bfc](https://github.com/vemonet/nanopub-rs/commit/e2f6bfc108da52af7afd2a0d7234e214e26c6107))

### 🛠️ Miscellaneous Tasks

- Bump version to 0.1.1 - ([b2ff457](https://github.com/vemonet/nanopub-rs/commit/b2ff4579880f524e08f12cf3bd3af94ed391c45e))

## [0.1.0](https://github.com/vemonet/nanopub-rs/compare/v0.0.17..v0.1.0) - 2024-03-04

### ⚙️ Continuous Integration
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "0.1.1"
version = "0.1.2"
authors = ["Vincent Emonet <vincent.emonet@gmail.com>"]
edition = "2021"
repository = "https://github.com/vemonet/nanopub-rs"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ homepage.workspace = true
categories.workspace = true

[dependencies]
nanopub = { version = "0.1.1", path = "../lib" }
nanopub = { version = "0.1.2", path = "../lib" }
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
tokio = { version = "1.36", features = ["macros", "rt-multi-thread"] }
2 changes: 1 addition & 1 deletion js/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ categories.workspace = true
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.1.1", path = "../lib" }
nanopub = { version = "0.1.2", path = "../lib" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wasm-bindgen-derive = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ name = "nanopub_sign"
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.1.1", path = "../lib" }
nanopub = { version = "0.1.2", path = "../lib" }
pyo3 = { version = "0.20", features = ["extension-module"] }
pyo3-asyncio = "0.20"
tokio = { version = "1.36", features = ["rt-multi-thread"] }
Expand Down

0 comments on commit 85d2bde

Please sign in to comment.