Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.0 #218

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,39 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

[Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0...HEAD

## [2.0.0] - 2023-10-25

### Fixed

- Ensure LineCheck and AccountFixer can work correctly with unscoped accounts ([#207]).
- Fixes for running on Ruby 3 ([#212]).

### Changed

- Return `[credit, debit]` from `DoubleEntry.transfer` ([#190]).
- Run the test suite against Rails 7.0, and Ruby 3.1, 3.2 ([#214]).
- Run the test suite against Rails 6.1, 7.0, 7.1, and Ruby 3.1, 3.2 ([#203], [#214], [#217]).
- Migrate CI to run on GitHub Actions ([#205])

### Removed

- Removed support for Rails < 6.0, and Ruby < 2.7 ([#214]).
- Removed support for Rails < 6.1, and Ruby < 3.0 ([#215], [#217]).

### Added

- Add `credit` and `debit` scopes to the `Line` model ([#192]).

[2.0.0]: https://github.com/envato/double_entry/compare/v2.0.0.beta5...v2.0.0
[#190]: https://github.com/envato/double_entry/pull/190
[#192]: https://github.com/envato/double_entry/pull/192
[#203]: https://github.com/envato/double_entry/pull/203
[#205]: https://github.com/envato/double_entry/pull/205
[#207]: https://github.com/envato/double_entry/pull/207
[#212]: https://github.com/envato/double_entry/pull/212
[#214]: https://github.com/envato/double_entry/pull/214
[#215]: https://github.com/envato/double_entry/pull/215
[#217]: https://github.com/envato/double_entry/pull/217

## [2.0.0.beta5] - 2021-02-24

Expand Down Expand Up @@ -483,7 +505,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Library released as Open Source!

[Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.beta5...HEAD
[2.0.0.beta5]: https://github.com/envato/double_entry/compare/v2.0.0.beta4...v2.0.0.beta5
[2.0.0.beta4]: https://github.com/envato/double_entry/compare/v2.0.0.beta3...v2.0.0.beta4
[2.0.0.beta3]: https://github.com/envato/double_entry/compare/v2.0.0.beta2...v2.0.0.beta3
Expand Down
2 changes: 1 addition & 1 deletion lib/double_entry/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# encoding: utf-8

module DoubleEntry
VERSION = '2.0.0.beta5'
VERSION = '2.0.0'
end
Loading