Skip to content

Commit 2995ca3

Browse files
committed
Version 3.1.1
1 parent e3eb8ff commit 2995ca3

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## master
44

5+
## 3.1.1 (2023-07-18)
6+
7+
### Signature updates
8+
9+
* Removed `GC.verify_transient_heap_internal_consistency` ([#1374](https://github.com/ruby/rbs/pull/1374))
10+
11+
### Library changes
12+
13+
* Relax rdoc version requirement in RDoc plugin ([#1333](https://github.com/ruby/rbs/pull/1333))
14+
15+
#### rbs collection
16+
17+
* Spec may be missing when rbs_collection.yaml declares dependency ([#1378](https://github.com/ruby/rbs/pull/1378))
18+
19+
### Miscellaneous
20+
21+
* Handle connection error with Resolv_test.rb ([#1356](https://github.com/ruby/rbs/pull/1356))
22+
* Fix broken CI ([#1353](https://github.com/ruby/rbs/pull/1353))
23+
524
## 3.1.0 (2023-04-26)
625

726
### Signature updates

Gemfile.lock

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rbs (3.1.0)
4+
rbs (3.1.1)
55

66
PATH
77
remote: test/assets/test-gem
@@ -15,6 +15,9 @@ GEM
1515
public_suffix (>= 2.0.2, < 6.0)
1616
ast (2.4.2)
1717
dbm (1.1.0)
18+
debase (0.2.5.beta2)
19+
debase-ruby_core_source (>= 0.10.12)
20+
debase-ruby_core_source (3.2.1)
1821
diff-lcs (1.5.0)
1922
digest (3.1.1)
2023
forwardable (1.3.2)
@@ -26,15 +29,13 @@ GEM
2629
json (2.6.3)
2730
json-schema (4.0.0)
2831
addressable (>= 2.8)
29-
language_server-protocol (3.17.0.3)
3032
marcel (1.0.2)
3133
minitest (5.18.0)
3234
parallel (1.23.0)
3335
parser (3.2.2.3)
3436
ast (~> 2.4.1)
3537
racc
3638
power_assert (2.0.3)
37-
prettier_print (1.2.1)
3839
prime (0.1.2)
3940
forwardable
4041
singleton
@@ -77,18 +78,13 @@ GEM
7778
parser (>= 3.2.1.0)
7879
rubocop-rubycw (0.1.6)
7980
rubocop (~> 1.0)
80-
ruby-lsp (0.5.1)
81-
language_server-protocol (~> 3.17.0)
82-
sorbet-runtime
83-
syntax_tree (>= 6.1.1, < 7)
81+
ruby-debug-ide (0.7.3)
82+
rake (>= 0.8.1)
8483
ruby-progressbar (1.13.0)
8584
singleton (0.1.1)
86-
sorbet-runtime (0.5.10827)
8785
stackprof (0.2.25)
8886
stringio (3.0.7)
8987
strong_json (2.1.2)
90-
syntax_tree (6.1.1)
91-
prettier_print (>= 1.2.0)
9288
tempfile (0.1.3)
9389
test-unit (3.5.9)
9490
power_assert
@@ -100,6 +96,7 @@ PLATFORMS
10096

10197
DEPENDENCIES
10298
dbm
99+
debase (>= 0.2.5.beta2)
103100
digest
104101
goodcheck
105102
json
@@ -114,7 +111,7 @@ DEPENDENCIES
114111
rspec
115112
rubocop
116113
rubocop-rubycw
117-
ruby-lsp
114+
ruby-debug-ide
118115
stackprof
119116
tempfile
120117
test-unit

lib/rbs/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 RBS
4-
VERSION = "3.1.0"
4+
VERSION = "3.1.1"
55
end

0 commit comments

Comments
 (0)