diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1dec633 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,37 @@ +# 📜 Changelog + +All notable changes to this project will be documented in this file. + +## [0.1.2](https://github.com/vemonet/nanopub-rs/compare/v0.1.1..0.1.2) - 2024-05-25 + +### ⛰️ Features + +- Add functions to standardize prefix, CURIE, and URI. Add `Converter::from_shacl()` loader using the sophia library for RDF manipulation. All functions added to the rust library are now also available in python and JS - ([ae67b97](https://github.com/vemonet/nanopub-rs/commit/ae67b97191885757f89ea3df2c9fd4042e1afad5)) +- Add functions `compress_or_standardize`, `expand_or_standardize`, `is_uri`, `is_curie`. Add git cliff to generate `CHANGELOG.md` and release notes - ([b663c97](https://github.com/vemonet/nanopub-rs/commit/b663c97f5709ad48ab3945504586f743f0a418fd)) + +### 🐛 Bug Fixes + +- Fix import in example - ([888884d](https://github.com/vemonet/nanopub-rs/commit/888884d91f2eab7a7bed7385aacccb87b306443d)) +- Fix build - ([a67cc85](https://github.com/vemonet/nanopub-rs/commit/a67cc85d618c3f8347dd8cdbac88ba3546fda71e)) +- Fix build workflow - ([79dc308](https://github.com/vemonet/nanopub-rs/commit/79dc308f4a79cfc60ef061d12f358320fb9475ce)) +- Fix R tests - ([0e7c00e](https://github.com/vemonet/nanopub-rs/commit/0e7c00e6531487736641db91c12534f6a890dbb5)) +- Fixing windows aarch64 build workflow - ([6071940](https://github.com/vemonet/nanopub-rs/commit/6071940c72caee712ec0ea8175192e2e79c034b2)) + +### 📚 Documentation + +- Use codeblocks tabs for the different languages - ([a8e9dd0](https://github.com/vemonet/nanopub-rs/commit/a8e9dd03ffda2161d45f1b693b4854c2cfd000ba)) + +## [0.1.1](https://github.com/vemonet/nanopub-rs/compare/v0.1.0..v0.1.1) - 2024-01-02 + +## [0.1.0](https://github.com/vemonet/nanopub-rs/tree/v0.1.0) - 2024-01-02 + +### 🐛 Bug Fixes + +- Fix example - ([7a7e9ab](https://github.com/vemonet/nanopub-rs/commit/7a7e9abdf2da8368cf508a434e5660302105b450)) +- Fix cov script - ([fb1b91a](https://github.com/vemonet/nanopub-rs/commit/fb1b91a78ae03b269eb5319ff0b87d72725fd324)) + +### 📚 Documentation + +- Docs - ([7b06126](https://github.com/vemonet/nanopub-rs/commit/7b0612670d8f207ea6d8ec8bd0e8415de27b81e2)) + + diff --git a/Cargo.toml b/Cargo.toml index 012ed53..355cad6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ ] [workspace.package] -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Idiomatic conversion between URIs and compact URIs (CURIEs)" readme = "README.md" @@ -25,7 +25,7 @@ authors = [ ] [workspace.dependencies] -curies = { version = "0.1.1", path = "./lib" } +curies = { version = "0.1.2", path = "./lib" } serde = { version = "1.0" } [profile.release]