Skip to content

Commit

Permalink
Release Symbolica 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benruijl committed Dec 30, 2024
1 parent 28e423a commit 69e0cfc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "symbolica"
readme = "Readme.md"
repository = "https://github.com/benruijl/symbolica"
rust-version = "1.73"
version = "0.13.0"
version = "0.14.0"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ If you want to use Symbolica as a library in Rust, simply include it in the `Car

```toml
[dependencies]
symbolica = "0.13"
symbolica = "0.14"
```

# Examples
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["math", "algebra", "polynomial", "expression", "manipulation"]
license = {file = "License.md"}
name = "symbolica"
readme = "Readme.md"
version = "0.13.0"
version = "0.14.0"

classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//! fn main() {
//! let input = Atom::parse("x^2*log(2*x + y) + exp(3*x)").unwrap();
//! let a = input.derivative(Symbol::new("x"));
//! println!("d({})/dx = {}:", input, a);
//! println!("d/dx {} = {}:", input, a);
//! }
//! ```
//!
Expand Down

0 comments on commit 69e0cfc

Please sign in to comment.