Skip to content

Commit

Permalink
Release 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Jun 6, 2024
1 parent 9d7b0da commit 789896b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
= Change Log

== Version 3.3.0 (2024-06-06)

* Fix broken call to `File.exists?` in `tags.rake`.
* Use BasicObject instead of BlankSlate for better compatibility with modern rubies.

== Version 3.2.4 (2019-12-10)

* Strings were frozen by adding `# frozen_string_literal: true` to all files
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# and distribution of modified versions of this work as long as the
# above copyright notice is included.

require 'bundler/gem_tasks'
require 'rake/clean'
require 'rake/testtask'
begin
Expand Down
4 changes: 2 additions & 2 deletions lib/builder/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
module Builder
VERSION_NUMBERS = [
VERSION_MAJOR = 3,
VERSION_MINOR = 2,
VERSION_BUILD = 4,
VERSION_MINOR = 3,
VERSION_BUILD = 0,
]
VERSION = VERSION_NUMBERS.join(".")
end

0 comments on commit 789896b

Please sign in to comment.