Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to 18.1.4 #241

Merged
merged 2 commits into from
Apr 23, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## [Unreleased]

## [18.1.4] - 2024-04-22
### Changed
- Upgrade to LLVM 18.1.4 minimum
### Added
- partial_inliner! pass

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ computationally intensive algorithms on the fly.
Current version
---------------

This library currently binds to LLVM-17 (specifically llvm-c 17).
This library currently binds to LLVM-18 (specifically llvm-c 18.

About version numbers
---------------------
Expand Down
4 changes: 2 additions & 2 deletions lib/llvm/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module LLVM
LLVM_VERSION = "18"
LLVM_REQUIRED_VERSION = "18.1.3"
RUBY_LLVM_VERSION = "18.1.3"
LLVM_REQUIRED_VERSION = "18.1.4"
RUBY_LLVM_VERSION = "18.1.4"
end