From 07da053ccc2673b411aff60d83f693c23031d0fa Mon Sep 17 00:00:00 2001 From: Frederik Leonhardt Date: Tue, 16 Apr 2024 00:01:05 +1200 Subject: [PATCH] Prepare release 2.5.0 --- CHANGELOG.md | 11 ++++++++--- pubspec.yaml | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fdd3da..f01781b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.5.0] - 2024-04-16 -### Changed +### Added - Add support for parsing variables containing digits (thanks [alexander-zubkov](https://github.com/alexander-zubkov)) + +### Changed + - Drop support for Dart SDK versions below 3.0.0 +- Refactor unit test suites and improve test coverage - Switch from pedantic to the [official Dart lint rules](https://pub.dev/packages/lints) ## [2.4.0] - 2023-04-05 @@ -192,7 +196,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of standalone version -[unreleased]: https://github.com/fkleon/math-expressions/compare/2.3.0...HEAD +[unreleased]: https://github.com/fkleon/math-expressions/compare/2.5.0...HEAD +[2.5.0]: https://github.com/fkleon/math-expressions/compare/2.4.0...2.5.0 [2.4.0]: https://github.com/fkleon/math-expressions/compare/2.3.1...2.4.0 [2.3.1]: https://github.com/fkleon/math-expressions/compare/2.3.0...2.3.1 [2.3.0]: https://github.com/fkleon/math-expressions/compare/2.2.0...2.3.0 diff --git a/pubspec.yaml b/pubspec.yaml index 14f30c5..fc66bda 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: math_expressions -version: 2.4.0 +version: 2.5.0 homepage: https://github.com/fkleon/math-expressions description: A library for parsing and evaluating mathematical expressions, supporting real numbers, vectors, and basic interval arithmetic.