Skip to content

Commit

Permalink
Release v0.7.0 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
prehner authored Oct 15, 2023
1 parent 69be4de commit 854ec18
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2023-10-15
### Packaging
- Updated `pyo3` and `numpy` dependencies to 0.20.
- Updated `approx` dependency to 0.5.

## [0.6.2] - 2023-08-06
### Added
- Added new functions `SIUnit::from_raw_parts` and `SIUnit::into_raw_parts`. [#55](https://github.com/itt-ustutt/quantity/pull/55)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "quantity"
version = "0.6.2"
version = "0.7.0"
authors = ["Philipp Rehner <[email protected]>",
"Gernot Bauer <[email protected]>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Representation of quantites, i.e. of unit valued scalars and arrays."
homepage = "https://github.com/itt-ustutt/quantity"
Expand All @@ -17,16 +17,16 @@ exclude = ["/.github/*", "*.ipynb", "/docs"]
rustdoc-args = [ "--html-in-header", "./src/docs-header.html" ]

[dependencies]
ndarray = { version = "0.15", features = ["serde", "approx"] }
approx = "0.4"
ndarray = { version = "0.15", features = ["serde", "approx-0_5"] }
approx = "0.5"
lazy_static = "1.4"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
ang = "0.6"
regex = "1.5"
pyo3 = { version = "0.18", features = ["multiple-pymethods"], optional = true}
numpy = { version = "0.18", optional = true }
pyo3 = { version = "0.20", features = ["multiple-pymethods"], optional = true}
numpy = { version = "0.20", optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion license-mit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021 Gernot Bauer, Philipp Rehner
Copyright (c) 2021-present Gernot Bauer, Philipp Rehner

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
6 changes: 3 additions & 3 deletions si-units/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "si-units"
version = "0.6.2"
version = "0.7.0"
authors = ["Philipp Rehner <[email protected]>",
"Gernot Bauer <[email protected]>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Representation of SI unit valued scalars and arrays."
homepage = "https://github.com/itt-ustutt/quantity/tree/master/si-units"
Expand All @@ -21,5 +21,5 @@ crate-type = ["cdylib"]
quantity = { path = "..", features = ["python"]}

[dependencies.pyo3]
version = "0.18"
version = "0.20"
features = ["extension-module", "abi3", "abi3-py37"]

0 comments on commit 854ec18

Please sign in to comment.