double_entry 2.0.0.beta2 → 2.0.0.beta3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 278a1d1188105e311363ff13e598a96bd3b2264fd4f2a0ce90ba75044b319f31
4
- data.tar.gz: '0915d86b5e811c80920ece162e6901e8dcdafd2f3b170d3b41382302bc53b209'
3
+ metadata.gz: ffb580cc13853357b19e242cc229d5b0f1d1d98c6cd9ac5657215b090b969741
4
+ data.tar.gz: 3da2d603f8de4f7a52763bb84729ebfd14e6e1d46f092dae338432c0d87c795c
5
5
  SHA512:
6
- metadata.gz: 411912d2abe22aa8ac019764cc61ddb001363c01e43dbfe10919081dd0526e7bc6d4c48bbac32316fc0e2bde19a608384b4e1a9675b2c9ec6dcfb9ebc71ef30a
7
- data.tar.gz: 957dd450536552f43910024f48421b5af6ccda4ac905773efa447ec8e1e1f7b69231356621b691cab5af564d0472fa0037a4833f26d5bcd7539e71145e92fa06
6
+ metadata.gz: 78ab72241164ae7ba887df3aeebfd8a4f18d73a6c2700f9f44dd2abb998320089cfe8547d4aea62211683aea9d4955a16f006a56e5803ab5de386891d1cfed4c
7
+ data.tar.gz: 625ddec747fd33cb464a285ce334cf05be94093cc9766d0e0277786bcc79f061bd0805baa3e6644566a1dc83d5209ff0a81ac06846170caa317a5d5f2cbb373b
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.0.0.beta3] - 2019-11-14
11
+
12
+ ### Fixed
13
+
14
+ - Remove duplicate detail columns in `double_entry_lines` table migration, ([#173]).
15
+
16
+ [#173]: https://github.com/envato/double_entry/pull/173
17
+
10
18
  ## [2.0.0.beta2] - 2019-01-27
11
19
 
12
20
  ### Removed
@@ -429,7 +437,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
429
437
 
430
438
  - Library released as Open Source!
431
439
 
432
- [Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.beta1...HEAD
440
+ [Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.beta3...HEAD
441
+ [2.0.0.beta3]: https://github.com/envato/double_entry/compare/v2.0.0.beta2...v2.0.0.beta3
442
+ [2.0.0.beta2]: https://github.com/envato/double_entry/compare/v2.0.0.beta1...v2.0.0.beta2
433
443
  [2.0.0.beta1]: https://github.com/envato/double_entry/compare/v1.0.1...v2.0.0.beta1
434
444
  [1.0.1]: https://github.com/envato/double_entry/compare/v1.0.0...v1.0.1
435
445
  [1.0.0]: https://github.com/envato/double_entry/compare/v0.10.3...v1.0.0
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module DoubleEntry
4
- VERSION = '2.0.0.beta2'
4
+ VERSION = '2.0.0.beta3'
5
5
  end
@@ -20,8 +20,6 @@ class CreateDoubleEntryTables < ActiveRecord::Migration<%= migration_version %>
20
20
  t.string "partner_account", :null => false
21
21
  t.string "partner_scope"
22
22
  t.references "detail", :index => false, :polymorphic => true
23
- t.integer "detail_id"
24
- t.string "detail_type"
25
23
  t.timestamps :null => false
26
24
  end
27
25
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: double_entry
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta2
4
+ version: 2.0.0.beta3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Envato
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-27 00:00:00.000000000 Z
11
+ date: 2019-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -255,9 +255,9 @@ licenses:
255
255
  - MIT
256
256
  metadata:
257
257
  bug_tracker_uri: https://github.com/envato/double_entry/issues
258
- changelog_uri: https://github.com/envato/double_entry/blob/v2.0.0.beta2/CHANGELOG.md
259
- documentation_uri: https://www.rubydoc.info/gems/double_entry/2.0.0.beta2
260
- source_code_uri: https://github.com/envato/double_entry/tree/v2.0.0.beta2
258
+ changelog_uri: https://github.com/envato/double_entry/blob/v2.0.0.beta3/CHANGELOG.md
259
+ documentation_uri: https://www.rubydoc.info/gems/double_entry/2.0.0.beta3
260
+ source_code_uri: https://github.com/envato/double_entry/tree/v2.0.0.beta3
261
261
  post_install_message:
262
262
  rdoc_options: []
263
263
  require_paths:
@@ -273,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
273
273
  - !ruby/object:Gem::Version
274
274
  version: 1.3.1
275
275
  requirements: []
276
- rubygems_version: 3.0.2
276
+ rubygems_version: 3.0.4
277
277
  signing_key:
278
278
  specification_version: 4
279
279
  summary: Tools to build your double entry financial ledger