Skip to content

Commit

Permalink
Prepare release of v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Goltergaul committed Oct 5, 2022
1 parent c526685 commit 583888b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 20 deletions.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.8.0] - 2022-10-05
### Added
- A Definition::Initializer mixin that can be used to validate keyword arguments of a class constructor

Expand Down
40 changes: 21 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
PATH
remote: .
specs:
definition (0.7.1)
definition (0.8.0)
activesupport
i18n

GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.2.2)
activesupport (7.0.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
approvals (0.0.25)
approvals (0.0.26)
json (~> 2.0)
nokogiri (~> 1.8)
thor (~> 1.0)
ast (2.4.2)
awesome_print (1.9.2)
benchmark-ips (2.10.0)
coderay (1.1.3)
concurrent-ruby (1.1.9)
concurrent-ruby (1.1.10)
diff-lcs (1.5.0)
ffi (1.15.5)
formatador (1.1.0)
Expand All @@ -41,37 +42,38 @@ GEM
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
i18n (1.10.0)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
jaro_winkler (1.5.4)
json (2.6.2)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
lumberjack (1.2.8)
method_source (1.0.0)
mini_portile2 (2.8.0)
minitest (5.15.0)
minitest (5.16.3)
nenv (0.3.0)
nokogiri (1.13.6)
nokogiri (1.13.8)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogiri (1.13.6-x86_64-linux)
nokogiri (1.13.8-x86_64-linux)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
parallel (1.21.0)
parser (3.1.0.0)
parallel (1.22.1)
parser (3.1.2.1)
ast (~> 2.4.1)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
psych (4.0.3)
psych (4.0.6)
stringio
racc (1.6.0)
rainbow (3.1.1)
rake (13.0.6)
rb-fsevent (0.11.1)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rspec (3.11.0)
Expand All @@ -80,17 +82,17 @@ GEM
rspec-mocks (~> 3.11.0)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
rspec-expectations (3.11.0)
rspec-expectations (3.11.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-its (1.3.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.11.0)
rspec-mocks (3.11.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-support (3.11.0)
rspec_junit_formatter (0.5.1)
rspec-support (3.11.1)
rspec_junit_formatter (0.6.0)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (0.66.0)
jaro_winkler (~> 1.5.1)
Expand All @@ -105,10 +107,10 @@ GEM
rubocop_runner (2.2.0)
ruby-progressbar (1.11.0)
shellany (0.0.1)
stringio (3.0.1)
stringio (3.0.2)
thor (1.2.1)
timecop (0.9.4)
tzinfo (2.0.4)
timecop (0.9.5)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
unicode-display_width (1.5.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/definition/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Definition
VERSION = "0.7.1"
VERSION = "0.8.0"
end

0 comments on commit 583888b

Please sign in to comment.