diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eae300..fe65d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,30 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.5.0] - 2024-09-29 + +### Added +- Add JDME for the years -1000 to +1000 (#58) +- Add no_std support (#36) + ### Fixed +- Fix negative dates (#62) - Fix off-by-one error some days at midnight +### Changed +- Update GitHub Actions (#60) +- Update time dependency (#40) +- Migrate from TravisCI to GitHub Actions (#30) + +### Bumped +- Bump num-traits from 0.2.17 to 0.2.18 (#70) +- Bump time from 0.3.30 to 0.3.31 (#67) +- Bump time from 0.3.20 to 0.3.30 (#64) +- Bump num-traits from 0.2.15 to 0.2.17 (#65) +- Bump time from 0.3.9 to 0.3.20 (#53) +- Bump num-traits from 0.2.14 to 0.2.15 (#42) +- Bump time from 0.1.43 to 0.3.9 (#41) + ## [0.4.0] - 2020-07-30 ### Added diff --git a/Cargo.lock b/Cargo.lock index c2ef39e..f82c59d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "geodate" -version = "0.4.0" +version = "0.5.0" dependencies = [ "getopts", "num-traits", diff --git a/Cargo.toml b/Cargo.toml index bc1b1b3..84562db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ Geodate computes geocentric expressions of points in time using a natural lunisolar calendar with metric time based on decimal fractions of the mean solar day. """ -version = "0.4.0" +version = "0.5.0" license = "MIT" authors = ["Vincent Ollivier "] repository = "https://github.com/vinc/geodate" diff --git a/LICENSE b/LICENSE index 5496a2c..fcce4bd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2020 Vincent Ollivier +Copyright (c) 2016-2024 Vincent Ollivier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index fdfd99f..6c82786 100644 --- a/README.md +++ b/README.md @@ -87,4 +87,4 @@ in ephemeris mode. License ------- -Copyright (c) 2016-2020 Vincent Ollivier. Released under the MIT License. +Copyright (c) 2016-2024 Vincent Ollivier. Released under the MIT License.