-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: create makefile, update dependencies and changelog
- Loading branch information
1 parent
5c7e620
commit c36dd40
Showing
3 changed files
with
57 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,56 @@ | ||
## 1.0.0 | ||
<!-- markdownlint-configure-file { "no-duplicate-heading": false } --> | ||
|
||
# Changelog | ||
|
||
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.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.1.0] - 2024-02-20 | ||
|
||
### Added | ||
|
||
- Makefile with commands to publish to pub.dev | ||
|
||
### Changed | ||
|
||
- Update dependencies | ||
- Update environment constraints | ||
|
||
## [1.0.0] - 2021-09-12 | ||
|
||
### Added | ||
|
||
- Support to sound null safety | ||
|
||
### Changed | ||
|
||
- Update deprecated dependencies | ||
|
||
## 0.1.2 | ||
## [0.1.2] - 2019-12-23 | ||
|
||
### Changed | ||
|
||
- Update code to match Pedantic recommendations | ||
- Fix examples | ||
|
||
### Fixed | ||
|
||
- Code examples | ||
|
||
## 0.1.1+1 | ||
## [0.1.1+1] - 2019-11-24 | ||
|
||
### Changed | ||
|
||
- Update dependencies | ||
- Update CI/CD and coverage API | ||
|
||
## 0.1.1 | ||
## [0.1.1] - 2018-11-04 | ||
|
||
### Fixed | ||
|
||
- Fix error when n is out of bounds. Throws DixonException when not 3 < n =< 30 | ||
- Error when n is out of bounds. Throws DixonException when not 3 < n =< 30 | ||
|
||
## 0.1.0 | ||
## [0.1.0] - 2018-10-21 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
all: dry-run | ||
|
||
publish: | ||
dart pub publish | ||
|
||
analyze: | ||
dart analyze | ||
|
||
dry-run: | ||
dart pub publish --dry-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters