Skip to content

Commit

Permalink
chore: prepare for 6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nlfiedler committed Jun 19, 2023
1 parent 8c10121 commit 5bcc2e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This file follows the convention described at
[Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [6.0.0] - 2023-06-19
### Changed
- Now requires Dart SDK version 3 or higher.
- **BREAKING CHANGE**: Both `Option` and `Result` are now `sealed` classes
which allows for the use of exhaustive pattern matching.
- feelsantiago: introduced the `sealed` class change to `Option` and `Result`.

## [5.3.0] - 2023-01-13
### Fixed
- stumblinbear: Fix possible invalid casting in catch block.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: oxidized
description: Definitions of Rust-like types, Option and Result, to promote safer programming.
version: 5.3.0
version: 6.0.0
homepage: https://github.com/nlfiedler/oxidized
repository: https://github.com/nlfiedler/oxidized.git
issue_tracker: https://github.com/nlfiedler/oxidized/issues

environment:
sdk: ">=3.0.0"
sdk: ">=3.0.0 <4.0.0"

dependencies:
equatable: ^2.0.3
Expand Down

0 comments on commit 5bcc2e0

Please sign in to comment.