Skip to content

Commit 583888b

Browse files
committed
Prepare release of v0.8.0
1 parent c526685 commit 583888b

File tree

3 files changed

+24
-20
lines changed

3 files changed

+24
-20
lines changed

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
9+
## [0.8.0] - 2022-10-05
810
### Added
911
- A Definition::Initializer mixin that can be used to validate keyword arguments of a class constructor
1012

Gemfile.lock

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
PATH
22
remote: .
33
specs:
4-
definition (0.7.1)
4+
definition (0.8.0)
55
activesupport
66
i18n
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (7.0.2.2)
11+
activesupport (7.0.4)
1212
concurrent-ruby (~> 1.0, >= 1.0.2)
1313
i18n (>= 1.6, < 2)
1414
minitest (>= 5.1)
1515
tzinfo (~> 2.0)
16-
approvals (0.0.25)
16+
approvals (0.0.26)
17+
json (~> 2.0)
1718
nokogiri (~> 1.8)
1819
thor (~> 1.0)
1920
ast (2.4.2)
2021
awesome_print (1.9.2)
2122
benchmark-ips (2.10.0)
2223
coderay (1.1.3)
23-
concurrent-ruby (1.1.9)
24+
concurrent-ruby (1.1.10)
2425
diff-lcs (1.5.0)
2526
ffi (1.15.5)
2627
formatador (1.1.0)
@@ -41,37 +42,38 @@ GEM
4142
guard (~> 2.1)
4243
guard-compat (~> 1.1)
4344
rspec (>= 2.99.0, < 4.0)
44-
i18n (1.10.0)
45+
i18n (1.12.0)
4546
concurrent-ruby (~> 1.0)
4647
jaro_winkler (1.5.4)
48+
json (2.6.2)
4749
listen (3.7.1)
4850
rb-fsevent (~> 0.10, >= 0.10.3)
4951
rb-inotify (~> 0.9, >= 0.9.10)
5052
lumberjack (1.2.8)
5153
method_source (1.0.0)
5254
mini_portile2 (2.8.0)
53-
minitest (5.15.0)
55+
minitest (5.16.3)
5456
nenv (0.3.0)
55-
nokogiri (1.13.6)
57+
nokogiri (1.13.8)
5658
mini_portile2 (~> 2.8.0)
5759
racc (~> 1.4)
58-
nokogiri (1.13.6-x86_64-linux)
60+
nokogiri (1.13.8-x86_64-linux)
5961
racc (~> 1.4)
6062
notiffany (0.1.3)
6163
nenv (~> 0.1)
6264
shellany (~> 0.0)
63-
parallel (1.21.0)
64-
parser (3.1.0.0)
65+
parallel (1.22.1)
66+
parser (3.1.2.1)
6567
ast (~> 2.4.1)
6668
pry (0.14.1)
6769
coderay (~> 1.1)
6870
method_source (~> 1.0)
69-
psych (4.0.3)
71+
psych (4.0.6)
7072
stringio
7173
racc (1.6.0)
7274
rainbow (3.1.1)
7375
rake (13.0.6)
74-
rb-fsevent (0.11.1)
76+
rb-fsevent (0.11.2)
7577
rb-inotify (0.10.1)
7678
ffi (~> 1.0)
7779
rspec (3.11.0)
@@ -80,17 +82,17 @@ GEM
8082
rspec-mocks (~> 3.11.0)
8183
rspec-core (3.11.0)
8284
rspec-support (~> 3.11.0)
83-
rspec-expectations (3.11.0)
85+
rspec-expectations (3.11.1)
8486
diff-lcs (>= 1.2.0, < 2.0)
8587
rspec-support (~> 3.11.0)
8688
rspec-its (1.3.0)
8789
rspec-core (>= 3.0.0)
8890
rspec-expectations (>= 3.0.0)
89-
rspec-mocks (3.11.0)
91+
rspec-mocks (3.11.1)
9092
diff-lcs (>= 1.2.0, < 2.0)
9193
rspec-support (~> 3.11.0)
92-
rspec-support (3.11.0)
93-
rspec_junit_formatter (0.5.1)
94+
rspec-support (3.11.1)
95+
rspec_junit_formatter (0.6.0)
9496
rspec-core (>= 2, < 4, != 2.12.0)
9597
rubocop (0.66.0)
9698
jaro_winkler (~> 1.5.1)
@@ -105,10 +107,10 @@ GEM
105107
rubocop_runner (2.2.0)
106108
ruby-progressbar (1.11.0)
107109
shellany (0.0.1)
108-
stringio (3.0.1)
110+
stringio (3.0.2)
109111
thor (1.2.1)
110-
timecop (0.9.4)
111-
tzinfo (2.0.4)
112+
timecop (0.9.5)
113+
tzinfo (2.0.5)
112114
concurrent-ruby (~> 1.0)
113115
unicode-display_width (1.5.0)
114116

lib/definition/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Definition
4-
VERSION = "0.7.1"
4+
VERSION = "0.8.0"
55
end

0 commit comments

Comments
 (0)