Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## 4.0.1 (2026-03-23)

This is a minor release to fix Ruby CI failure, which was caused by symlinks included in the `rust` directory.

### Library changes

* Fix `() -> (void)` being rejected as SyntaxError ([#2884](https://github.com/ruby/rbs/pull/2884))

### Miscellaneous

* Drop crates ([#2887](https://github.com/ruby/rbs/pull/2887))
* Add newline at eof ([#2885](https://github.com/ruby/rbs/pull/2885))

## 4.0.0 (2026-03-16)

RBS 4.0 ships with experimental RBS inline syntax support, allowing you to write type annotations directly in Ruby source files. See [docs/inline.md](docs/inline.md) for the syntax details.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GIT
PATH
remote: .
specs:
rbs (4.0.1.dev.2)
rbs (4.0.1)
logger
prism (>= 1.6.0)
tsort
Expand Down
2 changes: 1 addition & 1 deletion lib/rbs/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RBS
VERSION = "4.0.1.dev.2"
VERSION = "4.0.1"
end