rbs 2.8.2 → 2.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/comments.yml +1 -1
- data/.github/workflows/ruby.yml +9 -6
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/ext/rbs_extension/extconf.rb +1 -1
- data/lib/rbs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6bb6c50d53dbe2553e54183e52cbd06aa47dc9eaeac73cbb0b4a4a7f6c9cacd
|
|
4
|
+
data.tar.gz: da5eb13d9cde61c35b8fff69fa1125024087bf4b79d6e2db784d3924c182fbe5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 025c7c633b7b907404ff7f59bcd70d678d67d4b6a30ced9b3839eab8997bb8ba11dc74fee366f7617882f98364849b795ef945e6d748cbd280bc23c3ce51957d
|
|
7
|
+
data.tar.gz: 89f3d411f8de248ccadede5c598d7b4efd8d30acde493acb747b00563a59f868c089b3adbf3ae4f9e24c8a0a5aad8ddef7608946a67a462853d0b0a6d7eb9284
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -6,6 +6,9 @@ on:
|
|
|
6
6
|
- master
|
|
7
7
|
pull_request: {}
|
|
8
8
|
|
|
9
|
+
env:
|
|
10
|
+
LANG: 'C.UTF-8'
|
|
11
|
+
|
|
9
12
|
jobs:
|
|
10
13
|
test:
|
|
11
14
|
runs-on: "ubuntu-latest"
|
|
@@ -13,9 +16,9 @@ jobs:
|
|
|
13
16
|
matrix:
|
|
14
17
|
container_tag:
|
|
15
18
|
- master-nightly-focal
|
|
16
|
-
- 3.1-focal
|
|
17
|
-
- 3.0-focal
|
|
18
|
-
- 2.7-bionic
|
|
19
|
+
- 3.1-dev-focal
|
|
20
|
+
- 3.0-dev-focal
|
|
21
|
+
- 2.7-dev-bionic
|
|
19
22
|
- 2.6-bionic
|
|
20
23
|
job:
|
|
21
24
|
- test
|
|
@@ -28,16 +31,16 @@ jobs:
|
|
|
28
31
|
job: confirm_lexer
|
|
29
32
|
- container_tag: 2.6-bionic
|
|
30
33
|
job: stdlib_test
|
|
31
|
-
- container_tag: 2.7-bionic
|
|
34
|
+
- container_tag: 2.7-dev-bionic
|
|
32
35
|
job: stdlib_test
|
|
33
|
-
- container_tag: 3.0-focal
|
|
36
|
+
- container_tag: 3.0-dev-focal
|
|
34
37
|
job: stdlib_test
|
|
35
38
|
container:
|
|
36
39
|
image: rubylang/ruby:${{ matrix.container_tag }}
|
|
37
40
|
steps:
|
|
38
41
|
- uses: actions/checkout@v3
|
|
39
42
|
- name: Set working directory as safe
|
|
40
|
-
run:
|
|
43
|
+
run: git config --global --add safe.directory $(pwd)
|
|
41
44
|
- name: Install dependencies
|
|
42
45
|
run: |
|
|
43
46
|
apt-get update
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 2.8.3 (2023-01-06)
|
|
6
|
+
|
|
7
|
+
### Library changes
|
|
8
|
+
|
|
9
|
+
* Use `-std=gnu99` instead of `-std=c99` ([#973](https://github.com/ruby/rbs/pull/973))
|
|
10
|
+
* Add `rbs_` prefix to `skip` function ([#1186](https://github.com/ruby/rbs/pull/1186))
|
|
11
|
+
|
|
5
12
|
## 2.8.2 (2022-12-21)
|
|
6
13
|
|
|
7
14
|
### Signature updates
|
data/Gemfile.lock
CHANGED
data/lib/rbs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: RBS is the language for type signatures for Ruby and standard library
|
|
14
14
|
definitions.
|