Skip to content

Commit 727ceb2

Browse files
committed
update docs
1 parent 85d3abd commit 727ceb2

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ All notable changes to this project after the 0.2.0 release will be documented i
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.13.0][] - 2025-04-05
9+
10+
Updated installation, add means of using external gtest, some bug fixes, and addition methods on the Python library classes.
11+
The python library is working to match with [quantity-dev](https://github.com/quantity-dev/metrology-apis) Library.
12+
13+
### Fixed
14+
15+
- Fix segmentation fault in python library when used with shared units library [#373][]
16+
- Fix issue when using different namespace [#377][]
17+
18+
### Added
19+
20+
- Add additional methods for Python Dimension class, including copy,deep copy, additional math operations and decompose method on Dimension class [#371][],[379][]
21+
- Added method of using installed GTest [#376][],[#378][]
22+
- Added SOVERSION for unix based shared libraries [#375][]
23+
24+
[#371]: https://github.com/LLNL/units/pull/371
25+
[#373]: https://github.com/LLNL/units/pull/373
26+
[#375]: https://github.com/LLNL/units/pull/375
27+
[#376]: https://github.com/LLNL/units/pull/376
28+
[#377]: https://github.com/LLNL/units/pull/377
29+
[#378]: https://github.com/LLNL/units/pull/378
30+
[#379]: https://github.com/LLNL/units/pull/379
31+
832
## [0.12.3][] - 2025-03-04
933

1034
Tweaks to python packaging, add beta dimension output, and start moving some commodities to the constexpr mappings
@@ -183,6 +207,8 @@ A few user suggested tweaks, and support additional unit string conversions supp
183207
[0.10.2]: https://github.com/LLNL/units/releases/tag/v0.10.2
184208
[0.11.0]: https://github.com/LLNL/units/releases/tag/v0.11.0
185209
[0.12.0]: https://github.com/LLNL/units/releases/tag/v0.12.0
210+
[0.12.3]: https://github.com/LLNL/units/releases/tag/v0.12.3
211+
[0.13.0]: https://github.com/LLNL/units/releases/tag/v0.13.0
186212

187213
## [0.7.0][] - 2022-12-17
188214

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
- [Peter Steneteg](https://github.com/petersteneteg)
1717
- [Jan-Lukas Wynen](https://github.com/jl-wynen) - Support for multi-digit power strings
1818
- [Jiahao Wen](https://github.com/wkindling) - Fixes for cmake standard condition
19+
- [Sandro penguinpee](https://github.com/penguinpee) - using installed Gtest and help debugging seg fault and other suggestions for installation
20+
- [Mridul Seth](https://github.com/MridulS) - Bug fix when using alternate namespaces
1921

2022
## Used Libraries or Code
2123

python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A units library was needed to be able to represent units from a wide range of di
4747
3. Being able to associate a completely arbitrary unit given by users with a generic interface and support conversions between those user defined units and other units.
4848
4. The library has its origins in power systems so support for per-unit operations was also lacking in the alternatives.
4949

50-
The python wrapper around the library is mainly intended to be able to handle various string representations and easily handle conversions, along with some support for commodities and packaging.
50+
The python wrapper around the library is mainly intended to be able to handle various string representations and easily handle conversions, along with some support for commodities and packaging. As it is being developed the Python library will maintain compatibility with [quantity-dev](https://github.com/quantity-dev/metrology-apis).
5151

5252
### Basic use case
5353

0 commit comments

Comments
 (0)