reckon 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/lib/reckon/beancount_parser.rb +1 -1
- data/lib/reckon/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc9cf03c584638f19ffd111497105288a9002a71ec4dd649655a7fa1b8c6566c
|
|
4
|
+
data.tar.gz: 75453fe81b3f131a72dae8ab1f592cf0bcfb61fb380c5486cb984ffb504fa64b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9cc31d230176f3d70609d7560ce5b948295d3eef33402ea12aa91749ecb48cf4c36e9885af4ea07e451c8641ae1acacd5421b093621cbde65f88da116992be30
|
|
7
|
+
data.tar.gz: d4e743fa0f3104bc4fe14774ea5e7ce8b7862c0865b725f6e7fac5f0a68607c7baa45c95a99d755c46a03dd90389d69e6addfd06c990103e4bc12c9959e6bf65
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.9.3](https://github.com/cantino/reckon/tree/v0.9.3) (2023-08-25)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/cantino/reckon/compare/v0.9.2...v0.9.3)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Can you choose to apply amounts against category instead of account name? [\#123](https://github.com/cantino/reckon/issues/123)
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- Fix end quote around note in beancount format [\#124](https://github.com/cantino/reckon/pull/124) ([stephas](https://github.com/stephas))
|
|
14
|
+
|
|
3
15
|
## [v0.9.2](https://github.com/cantino/reckon/tree/v0.9.2) (2023-04-14)
|
|
4
16
|
|
|
5
17
|
[Full Changelog](https://github.com/cantino/reckon/compare/v0.9.1...v0.9.2)
|
data/Gemfile.lock
CHANGED
|
@@ -65,7 +65,7 @@ module Reckon
|
|
|
65
65
|
end
|
|
66
66
|
|
|
67
67
|
def format_row(row, line1, line2)
|
|
68
|
-
out = %Q{#{row[:pretty_date]} * "#{row[:description]}" "#{row[:note]}\n}
|
|
68
|
+
out = %Q{#{row[:pretty_date]} * "#{row[:description]}" "#{row[:note]}"\n}
|
|
69
69
|
out += "\t#{line1.first}\t\t\t#{line1.last}\n"
|
|
70
70
|
out += "\t#{line2.first}\t\t\t#{line2.last}\n\n"
|
|
71
71
|
out
|
data/lib/reckon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reckon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Cantino
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-
|
|
13
|
+
date: 2023-08-25 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rspec
|