Skip to content

Commit

Permalink
Release 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cardillan committed Dec 7, 2024
1 parent dbf6748 commit 11fb9ea
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,21 @@

All notable changes to this project will be documented in this file.

## 2.7.1 - 2024-12-07

### Fixed

* Fixed Function Inlining optimization incorrectly processing functions with output parameters ([#183](https://github.com/cardillan/mindcode/issues/183)).

### Changed

* Changed the Print Merger optimization and processor emulator to correctly round numbers in print instructions in accordance with [Mindustry Logic update](https://github.com/Anuken/Mindustry-Suggestions/issues/5319))

## 2.7.0 - 2024-11-28

### Fixed

* Fixed wrong Jump Threading optimization in out-of-line functions ([#177](https://github.com/cardillan/mindcode/issues/107)).
* Fixed wrong Jump Threading optimization in out-of-line functions ([#177](https://github.com/cardillan/mindcode/issues/177)).
* Fixed bugs in the Data Flow Optimization:
* The virtual `setaddr` instruction, unused due to the corresponding jump being unreachable, wouldn't be removed from code. This caused errors referencing a non-existent label.
* Data Flow Optimization would sometimes corrupt the expected code structure when removing unneeded instructions, causing bugs or runtime errors during subsequent optimizations.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.version>6.2.0</spring.version>
<revision>2.7.0</revision>
<revision>2.7.1</revision>
</properties>

<dependencies>
Expand Down

0 comments on commit 11fb9ea

Please sign in to comment.