Skip to content

Commit a531693

Browse files
authored
release: Prep v0.2.4 for release + update CHANGELOG.md (#40)
* fixup: Add missing rename * release: Prep v2.4 for release + update CHANGELOG.md
1 parent 7a29824 commit a531693

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

docs/CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010

1111

12+
## [0.2.4] – 2022-05-13
13+
14+
### Added
15+
16+
* Added a new 'How To' page describing how to perform Wolfram evaluations from Rust
17+
library functions. ([#38], [#39])
18+
19+
* [How To: Evaluate Wolfram code from Rust](https://docs.rs/wolfram-library-link/0.2.4/wolfram_library_link/docs/evaluate_wolfram_code_from_rust/index.html)
20+
21+
22+
1223
## [0.2.3] – 2022-03-29
1324

1425
### Fixed
@@ -188,10 +199,15 @@ caused by bugs present in early versions of `wolfram-app-discovery` and `wstp-sy
188199
<!-- v0.2.3 -->
189200
[#34]: https://github.com/WolframResearch/wolfram-library-link-rs/pull/34
190201

202+
<!-- v0.2.4 -->
203+
[#38]: https://github.com/WolframResearch/wolfram-library-link-rs/pull/38
204+
[#39]: https://github.com/WolframResearch/wolfram-library-link-rs/pull/39
205+
191206

192207
<!-- This needs to be updated for each tagged release. -->
193-
[Unreleased]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.3...HEAD
208+
[Unreleased]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.4...HEAD
194209

210+
[0.2.4]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.3...v0.2.4
195211
[0.2.3]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.2...v0.2.3
196212
[0.2.2]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.1...v0.2.2
197213
[0.2.1]: https://github.com/WolframResearch/wolfram-library-link-rs/compare/v0.2.0...v0.2.1

wolfram-library-link-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wolfram-library-link-sys"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
authors = ["Connor Gray <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"

wolfram-library-link/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wolfram-library-link"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
authors = ["Connor Gray <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -20,9 +20,9 @@ include = [
2020
]
2121

2222
[dependencies]
23-
wolfram-library-link-macros = { version = "0.2.3", path = "./wolfram-library-link-macros" }
23+
wolfram-library-link-macros = { version = "0.2.4", path = "./wolfram-library-link-macros" }
2424

25-
wolfram-library-link-sys = { version = "0.2.3", path = "../wolfram-library-link-sys" }
25+
wolfram-library-link-sys = { version = "0.2.4", path = "../wolfram-library-link-sys" }
2626

2727
wstp = "0.2.1"
2828
wolfram-expr = "0.1.0"

wolfram-library-link/RustLink/PacletInfo.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
(* Test the documentation examples used in wolfram_library_link::docs. *)
1616
{"Tests", "Method" -> "Experimental-v1", "Root" -> "Examples/Docs/Convert"},
17-
{"Tests", "Method" -> "Experimental-v1", "Root" -> "Examples/Docs/CallBackIntoWolframFromRust"}
17+
{"Tests", "Method" -> "Experimental-v1", "Root" -> "Examples/Docs/EvaluateWolframCodeFromRust"}
1818
}
1919
|>]
2020

wolfram-library-link/wolfram-library-link-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wolfram-library-link-macros"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66
repository = "https://github.com/WolframResearch/wolfram-library-link-rs"

0 commit comments

Comments
 (0)