Skip to content

Commit

Permalink
bump to v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoyanonymous committed Sep 9, 2020
1 parent e3f0c6b commit f9ff1cf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG


## v0.1.3 (2020-09-09)

### fixed bugs

- fixed unusual crash when if-statement used on linux
- fixed operator precedence of if statement when used as expression

```rust
// mathmatical operators have higher precedence than if or else!
myvar = if(cond) 100+20 else 200*50
```

## v0.1.2 (2020-09-07)

### fixed bugs
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
PROJECT(mimium
LANGUAGES CXX
HOMEPAGE_URL "https://mimium.org"
VERSION 0.1.2
VERSION 0.1.3
)
if(${CMAKE_SYSTEM_NAME} STREQUAL "Emscripten")
set(CMAKE_CXX_FLAGS_DEBUG "-g4")
Expand Down

0 comments on commit f9ff1cf

Please sign in to comment.