Skip to content

Commit

Permalink
Bump acts_as_account version to **3.4.0**
Browse files Browse the repository at this point in the history
- Updated `VERSION` in `VERSION` file from "3.3.0" to "**3.4.0**"
- Updated `s.version` in `acts_as_account.gemspec` from "3.3.0" to "**3.4.0**"
- Updated `VERSION` constant in `lib/acts_as_account/version.rb` from "3.3.0" to "**3.4.0**"
- Updated `s.date` in `acts_as_account.gemspec` from "2024-10-23" to "2024-10-28"
  • Loading branch information
flori committed Oct 28, 2024
1 parent c601f5f commit ff75e07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.0
6 changes: 3 additions & 3 deletions acts_as_account.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
# stub: acts_as_account 3.3.0 ruby lib
# stub: acts_as_account 3.4.0 ruby lib

Gem::Specification.new do |s|
s.name = "acts_as_account".freeze
s.version = "3.3.0".freeze
s.version = "3.4.0".freeze

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Thies C. Arntzen, Norman Timmler, Matthias Frick, Phillip Oertel".freeze]
s.date = "2024-10-23"
s.date = "2024-10-28"
s.description = "acts_as_account implements double entry accounting for Rails models. Your models get accounts and you can do consistent transactions between them. Since the documentation is sparse, see the transfer.feature for usage examples.".freeze
s.email = "[email protected]".freeze
s.extra_rdoc_files = ["README.md".freeze, "lib/acts_as_account.rb".freeze, "lib/acts_as_account/account.rb".freeze, "lib/acts_as_account/active_record_extensions.rb".freeze, "lib/acts_as_account/configuration.rb".freeze, "lib/acts_as_account/global_account.rb".freeze, "lib/acts_as_account/journal.rb".freeze, "lib/acts_as_account/manually_created_account.rb".freeze, "lib/acts_as_account/posting.rb".freeze, "lib/acts_as_account/rails.rb".freeze, "lib/acts_as_account/transfer.rb".freeze, "lib/acts_as_account/version.rb".freeze]
Expand Down
2 changes: 1 addition & 1 deletion lib/acts_as_account/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ActsAsAccount
# ActsAsAccount version
VERSION = '3.3.0'
VERSION = '3.4.0'
VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
Expand Down

0 comments on commit ff75e07

Please sign in to comment.