Skip to content

Release v10.0.4 #576

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

Merged
merged 3 commits into from
Apr 13, 2023
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change log

## v10.0.4

- Composed image format by @PalumboN in https://github.com/pharo-project/pharo-vm/pull/377
- Composed image format: C translation by @PalumboN in https://github.com/pharo-project/pharo-vm/pull/388
- Perm space on image by @PalumboN in https://github.com/pharo-project/pharo-vm/pull/416
- New & old remembered sets by @PalumboN in https://github.com/pharo-project/pharo-vm/pull/418
- Reduce segment files size on move objects to PermSpace by @PalumboN in https://github.com/pharo-project/pharo-vm/pull/508
- Adding Support for PermSpace by @tesonep in https://github.com/pharo-project/pharo-vm/pull/488

- Adding option to not use contant block optimization for test by @StevenCostiou in https://github.com/pharo-project/pharo-vm/pull/573
- Do not use newer CMAKE features by @estebanlm in https://github.com/pharo-project/pharo-vm/pull/572
- Split a method in two to reuse part in espell by @jecisc in https://github.com/pharo-project/pharo-vm/pull/569


## New Contributors
* @StevenCostiou made their first contribution in https://github.com/pharo-project/pharo-vm/pull/573
* @estebanlm made their first contribution in https://github.com/pharo-project/pharo-vm/pull/572
* @jecisc made their first contribution in https://github.com/pharo-project/pharo-vm/pull/569

**Full Changelog**: https://github.com/pharo-project/pharo-vm/compare/v10.0.3...v10.0.4

## v10.0.3

- Fix ARM32 by @tesonep in #562
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extractVCSInformation(GIT_COMMIT_HASH GIT_DESCRIBE GIT_COMMIT_DATE)

set(VERSION_MAJOR 10)
set(VERSION_MINOR 0)
set(VERSION_PATCH_NUMBER 3)
set(VERSION_PATCH_NUMBER 4)

if(BUILD_IS_RELEASE)
set(VERSION_PATCH "${VERSION_PATCH_NUMBER}")
Expand Down