diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a6923c17..566b88224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 4.1.3 (2026-08-10) + +### Miscellaneous + +* Don't use Clang nullability qualifiers in strict ISO C mode ([#3074](https://github.com/ruby/rbs/pull/3074), Backported in [#3075](https://github.com/ruby/rbs/pull/3075)) +* Avoid eagerly inspecting call traces in type assertions ([#3073](https://github.com/ruby/rbs/pull/3073), Backported in [#3076](https://github.com/ruby/rbs/pull/3076)) + ## 4.1.2 (2026-08-03) ### Miscellaneous diff --git a/Gemfile.lock b/Gemfile.lock index 1da8a68e6..e194a1673 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -22,7 +22,7 @@ GIT PATH remote: . specs: - rbs (4.1.2) + rbs (4.1.3) logger prism (>= 1.6.0) tsort diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index 243f184d5..24bd91fc5 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "4.1.2" + VERSION = "4.1.3" end