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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d02e58a6abcd72bbe920246599ed073e7c074929dff4f5b2408f87c9a222a51
4
- data.tar.gz: 3c89a774748375ff30057d712465678ecff0936db4359d8fef10a819ba410d42
3
+ metadata.gz: 967c414d9d2354dd828368920733b1c81240d1f0c267fdc422d075965f1cec94
4
+ data.tar.gz: a258399d77a8f4c6ca297fcea435c8b2c167bced045b32d2884f270a9483c33b
5
5
  SHA512:
6
- metadata.gz: c8b5d4de5b481f30fe65177f04b22d323cc697512d0a16077a44aefe393c821d1527343d369fc0a4a850cae725d7ef5a5f073c65c29d4cb49a558262e5c4decb
7
- data.tar.gz: 6a487e4ca950684075ab462ce3cb9e04653cfa0e9af6888280866f08ca05653172ce86dcb89a8dd7bda1d4c5d4bd45f6f8cd106f428cca723ffe9787ff3d19b5
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.0...HEAD
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
@@ -1,7 +1,7 @@
1
1
  #ifndef PRISM_EXT_NODE_H
2
2
  #define PRISM_EXT_NODE_H
3
3
 
4
- #define EXPECTED_PRISM_VERSION "0.15.0"
4
+ #define EXPECTED_PRISM_VERSION "0.15.1"
5
5
 
6
6
  #include <ruby.h>
7
7
  #include <ruby/encoding.h>
@@ -1,4 +1,4 @@
1
1
  #define PRISM_VERSION_MAJOR 0
2
2
  #define PRISM_VERSION_MINOR 15
3
- #define PRISM_VERSION_PATCH 0
4
- #define PRISM_VERSION "0.15.0"
3
+ #define PRISM_VERSION_PATCH 1
4
+ #define PRISM_VERSION "0.15.1"
@@ -22,7 +22,7 @@ module Prism
22
22
  module Serialize
23
23
  MAJOR_VERSION = 0
24
24
  MINOR_VERSION = 15
25
- PATCH_VERSION = 0
25
+ PATCH_VERSION = 1
26
26
 
27
27
  def self.load(input, serialized)
28
28
  input = input.dup
data/prism.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "prism"
5
- spec.version = "0.15.0"
5
+ spec.version = "0.15.1"
6
6
  spec.authors = ["Shopify"]
7
7
  spec.email = ["ruby@shopify.com"]
8
8
 
@@ -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;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prism
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify