-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
Release 1.13.2 #822
Merged
straight-shoota
merged 1 commit into
crystal-lang:master
from
straight-shoota:release/1.13.2
Aug 20, 2024
Merged
Release 1.13.2 #822
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: Crystal 1.13.2 is released! | ||
version: 1.13.2 | ||
date: 2024-08-20 | ||
author: straight-shoota | ||
--- | ||
We are announcing a new patch release of the Crystal [1.13 series](/_releases/2024-07-09-1.13.0-released.md) with a couple of important bug fixes. | ||
|
||
Pre-built packages are available on [GitHub Releases](https://github.com/crystal-lang/crystal/releases/tag/1.13.2) | ||
and our official distribution channels. | ||
See [crystal-lang.org/install](https://crystal-lang.org/install/) for | ||
installation instructions. | ||
|
||
## Stats | ||
|
||
This release includes [5 changes since 1.13.1](https://github.com/crystal-lang/crystal/pulls?q=is%3Apr+milestone%3A1.13.2) | ||
by 2 contributors. We thank all the contributors for all the effort put into | ||
improving the language! ❤️ | ||
|
||
## Changes | ||
|
||
This release fixes two compiler bugs which became apparent with the upgrade to LLVM 18. | ||
Since LLVM 18 the alignment of some types has changed (e.g. `Int128` goes from 8 to 16 byte alignment). | ||
The compiler didn't expect an alignment bigger than 8 bytes in some cases. | ||
These misalignments are now fixed ([#14906], [#14843]). | ||
|
||
*Thanks [@HertzDevil]* | ||
|
||
Other bug fixes are atomic allocation for `ReferenceStorage(T)` if `T` has no inner pointers ([#14845]) | ||
and explicitly clearing deleted `Hash::Entry` ([#14862]). | ||
|
||
*Thanks [@HertzDevil]* | ||
|
||
[#14862]: https://github.com/crystal-lang/crystal/pull/14862 | ||
[#14845]: https://github.com/crystal-lang/crystal/pull/14845 | ||
[#14906]: https://github.com/crystal-lang/crystal/pull/14906 | ||
[#14843]: https://github.com/crystal-lang/crystal/pull/14843 | ||
|
||
For more details, visit the [full changelog](https://github.com/crystal-lang/crystal/releases/tag/1.13.2). | ||
|
||
If you find any further issues, please [report them](https://github.com/crystal-lang/crystal/issues/). | ||
|
||
--- | ||
|
||
> **THANKS:** | ||
> We have been able to do all of this thanks to the continued support of [84codes](https://www.84codes.com/) and every other [sponsor](/sponsors). | ||
> To maintain and increase the development pace, donations and sponsorships are | ||
> essential. [OpenCollective](https://opencollective.com/crystal-lang) is | ||
> available for that. | ||
> | ||
> Reach out to [[email protected]](mailto:[email protected]) | ||
> if you’d like to become a direct sponsor or find other ways to support Crystal. | ||
> We thank you in advance! | ||
|
||
[@HertzDevil]: https://github.com/HertzDevil |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see the significance.