Skip to content

Commit 10cf416

Browse files
authored
Merge pull request #65 from railslove/ci/release-two-one
Ci: release 2.1
2 parents c3ba2e0 + a711838 commit 10cf416

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
branches: [master]
7+
branches: [main]
88

99
jobs:
1010
test:
@@ -13,6 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
ruby-version:
16+
- 3.4
1617
- 3.3
1718
- 3.2
1819
- 3.1

CHANGELOG.mdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# NEXT release
22

3+
# 2.1
4+
- `[REFACTOR]` improve file parser to work with windows line breaks and any known header formats
5+
- `[BUGFIX]` fix `strip_header` making it work on statements without headers
6+
- `[HOUSEKEEPING]` use `main` instead of `master` as default branch
7+
- `[ENHANCEMENT]` add support for ruby `3.4`
8+
39
# 2.0
410
- `[REFACTOR]` **DEPRECATED:** `storno?` and related methods `storno_credit`, `storno_debit`. Use `reversal?` and related methods `reversal_credit?`, `reversal_debit?` instead
511
- `[BUGFIX]` **DEPRECATED:** `funds_code` method returns the `credit_debit_indicator` from the SWIFT definition. Therefore the method is deprecated in favor of `credit_debit_indicator` method

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ statements.each do |s|
6262
puts s.generation_date
6363
puts s.opening_balance.amount
6464
puts s.closing_balance.amount
65-
puts s.sha # SHA of the statement source - could be used as an identifier (see: https://github.com/railslove/cmxl/blob/master/lib/cmxl/statement.rb#L49-L55)
65+
puts s.sha # SHA of the statement source - could be used as an identifier (see: https://github.com/railslove/cmxl/blob/main/lib/cmxl/statement.rb#L49-L55)
6666

6767
s.transactions.each do |t|
6868
puts t.information

lib/cmxl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Cmxl
2-
VERSION = '2.0'.freeze
2+
VERSION = '2.1'.freeze
33
end

0 commit comments

Comments
 (0)