Skip to content

Commit ee6e83d

Browse files
committed
Bump to v1.8.1
1 parent b8a2352 commit ee6e83d

21 files changed

Lines changed: 36 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
9+
## [1.8.1] - 2026-03-16
10+
11+
### Changed
12+
13+
- Fix `not` binding power in endless methods.
14+
- Correctly handle `and?` and similar on Ruby 4.0.
15+
- Fix error message for block/lambda with `...` argument.
16+
- Fix `in` handling.
17+
718
## [1.8.0] - 2026-01-12
819

920
### Added
@@ -19,8 +30,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
1930
- Decouple ripper translator from ripper library.
2031
- Sync Prism::Translation::ParserCurrent with Ruby 4.0.
2132

22-
## [Unreleased]
23-
2433
## [1.7.0] - 2025-12-18
2534

2635
### Added
@@ -731,7 +740,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
731740

732741
- 🎉 Initial release! 🎉
733742

734-
[unreleased]: https://github.com/ruby/prism/compare/v1.8.0...HEAD
743+
[unreleased]: https://github.com/ruby/prism/compare/v1.8.1...HEAD
744+
[1.8.1]: https://github.com/ruby/prism/compare/v1.8.0...v1.8.1
735745
[1.8.0]: https://github.com/ruby/prism/compare/v1.7.0...v1.8.0
736746
[1.7.0]: https://github.com/ruby/prism/compare/v1.6.0...v1.7.0
737747
[1.6.0]: https://github.com/ruby/prism/compare/v1.5.2...v1.6.0

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

ext/prism/extension.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef PRISM_EXT_NODE_H
22
#define PRISM_EXT_NODE_H
33

4-
#define EXPECTED_PRISM_VERSION "1.8.0"
4+
#define EXPECTED_PRISM_VERSION "1.8.1"
55

66
#include <ruby.h>
77
#include <ruby/encoding.h>

gemfiles/2.7/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/3.0/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/3.1/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/3.2/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/3.3/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/3.4/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

gemfiles/4.0/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
prism (1.8.0)
4+
prism (1.8.1)
55

66
GEM
77
remote: https://rubygems.org/

0 commit comments

Comments
 (0)