Skip to content

Commit

Permalink
chore: prepare for 6.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nlfiedler committed Jul 15, 2023
1 parent 17cb595 commit 6501059
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.1.0] - 2023-07-15
### Added
- amaxcz: add `matchOk()`, `matchErr()`, and `unwrapOrNull()` functions to `Result`
- amaxcs: `unwrap()` function now contains the original error message

## [6.0.0] - 2023-06-19
### Changed
- Now requires Dart SDK version 3 or higher.
Expand Down
2 changes: 1 addition & 1 deletion lib/oxidized.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
/// package.
library oxidized;

export 'src/option.dart' show Option, Some, None, OptionUnwrapException;
export 'src/option.dart' show None, Option, OptionUnwrapException, Some;
export 'src/option_async_utils/option_async_utils.dart';
export 'src/option_utils/option_utils.dart';
export 'src/result.dart';
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: oxidized
description: Definitions of Rust-like types, Option and Result, to promote safer programming.
version: 6.0.0
version: 6.1.0
homepage: https://github.com/nlfiedler/oxidized
repository: https://github.com/nlfiedler/oxidized.git
issue_tracker: https://github.com/nlfiedler/oxidized/issues
Expand All @@ -13,4 +13,4 @@ dependencies:

dev_dependencies:
test: ^1.20.1
very_good_analysis: ^3.1.0
very_good_analysis: ^5.0.0+1

0 comments on commit 6501059

Please sign in to comment.