prism 0.15.0 → 0.15.1
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/CHANGELOG.md +8 -1
- data/ext/prism/extension.h +1 -1
- data/include/prism/version.h +2 -2
- data/lib/prism/serialize.rb +1 -1
- data/prism.gemspec +1 -1
- data/src/util/pm_constant_pool.c +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 967c414d9d2354dd828368920733b1c81240d1f0c267fdc422d075965f1cec94
|
4
|
+
data.tar.gz: a258399d77a8f4c6ca297fcea435c8b2c167bced045b32d2884f270a9483c33b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 104746123657e06d12be6da5ebc6778afda2f94646d3544ff88acd42c5ef2d01f46855f96548360166ee0b4ce6d5164107f7a857c1b52984237421287da4e85c
|
7
|
+
data.tar.gz: d4237da63459ab266d5ee824d680eadef6ee893da5b7fd47960b55f4496630e18b0804b455e51576dd52ab4f085a3eb013d1e08fc7c4577c1ed07441abf6b53e
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.15.1] - 2023-10-18
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
|
13
|
+
- Fix compilation warning on assigning to bitfield.
|
14
|
+
|
9
15
|
## [0.15.0] - 2023-10-18
|
10
16
|
|
11
17
|
### Added
|
@@ -195,7 +201,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
195
201
|
|
196
202
|
- 🎉 Initial release! 🎉
|
197
203
|
|
198
|
-
[unreleased]: https://github.com/ruby/prism/compare/v0.15.
|
204
|
+
[unreleased]: https://github.com/ruby/prism/compare/v0.15.1...HEAD
|
205
|
+
[0.15.1]: https://github.com/ruby/prism/compare/v0.15.0...v0.15.1
|
199
206
|
[0.15.0]: https://github.com/ruby/prism/compare/v0.14.0...v0.15.0
|
200
207
|
[0.14.0]: https://github.com/ruby/prism/compare/v0.13.0...v0.14.0
|
201
208
|
[0.13.0]: https://github.com/ruby/prism/compare/v0.12.0...v0.13.0
|
data/ext/prism/extension.h
CHANGED
data/include/prism/version.h
CHANGED
data/lib/prism/serialize.rb
CHANGED
data/prism.gemspec
CHANGED
data/src/util/pm_constant_pool.c
CHANGED
@@ -197,7 +197,7 @@ pm_constant_pool_insert(pm_constant_pool_t *pool, const uint8_t *start, size_t l
|
|
197
197
|
// constant and replace it with the shared constant.
|
198
198
|
free((void *) constant->start);
|
199
199
|
constant->start = start;
|
200
|
-
bucket->type = PM_CONSTANT_POOL_BUCKET_DEFAULT;
|
200
|
+
bucket->type = (unsigned int) (PM_CONSTANT_POOL_BUCKET_DEFAULT & 0x3);
|
201
201
|
}
|
202
202
|
|
203
203
|
return bucket->id;
|