You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,30 @@ All notable changes to this project after the 0.2.0 release will be documented i
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6
6
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
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
+
8
32
## [0.12.3][] - 2025-03-04
9
33
10
34
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
Copy file name to clipboardExpand all lines: python/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ A units library was needed to be able to represent units from a wide range of di
47
47
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.
48
48
4. The library has its origins in power systems so support for per-unit operations was also lacking in the alternatives.
49
49
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).
0 commit comments