Skip to content

Commit

Permalink
[release] v0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanming-hu committed Mar 30, 2020
1 parent 763e8be commit 5876190
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project(taichi)

SET(TI_VERSION_MAJOR 0)
SET(TI_VERSION_MINOR 5)
SET(TI_VERSION_PATCH 9)
SET(TI_VERSION_PATCH 10)

execute_process(
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ python3 -m pip install taichi-nightly-cuda-10-1
|**PyPI**|[![Build Status](https://travis-ci.com/yuanming-hu/taichi-wheels-test.svg?branch=master)](https://travis-ci.com/yuanming-hu/taichi-wheels-test)|[![Build Status](https://travis-ci.com/yuanming-hu/taichi-wheels-test.svg?branch=master)](https://travis-ci.com/yuanming-hu/taichi-wheels-test)|[![Build status](https://ci.appveyor.com/api/projects/status/39ar9wa8yd49je7o?svg=true)](https://ci.appveyor.com/project/IteratorAdvance/taichi-wheels-test)|

## Updates
- (Mar 29, 2020) v0.5.10 released
- **Language and syntax**
- Fix `ti.static(ti.grouped(ti.ndrange(...)))` syntax checker false positive (#680) (by **Yuanming Hu**)
- **Command line interface**
- `ti test` now supports `-t/--threads` for specifying number of testing threads (#674) (by **Yuanming Hu**)
- [Full log](https://github.com/taichi-dev/taichi/releases/tag/0.5.10)

- (Mar 28, 2020) v0.5.9 released
- **CPU backends**
- Support `bitmasked` as the leaf block structure for `1x1x1` masks (#676) (by **Yuanming Hu**)
Expand All @@ -51,7 +58,7 @@ python3 -m pip install taichi-nightly-cuda-10-1
- Silence compile warnings (#650) (by **Ye Kuang**)
- **Optimization**
- Improved Taichi IR optimizers (#662) (#668) (by **xumingkuan**)
- [Full log](https://github.com/taichi-dev/taichi/releases/tag/0.5.9)
- [Full log](https://github.com/taichi-dev/taichi/releases/tag/0.5.9)
- (Mar 24, 2020) v0.5.8 released. Visible/notable changes:
- **Language features**
- Access out-of-bound checking on CPU backends (#572) (by **xumingkuan**)
Expand Down
2 changes: 1 addition & 1 deletion docs/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.9
0.5.10
3 changes: 2 additions & 1 deletion misc/make_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ def format(c):
for item in notable_changes[tag]:
print(f' -{item}')
print(
f' - [Full log](https://github.com/taichi-dev/taichi/releases/tag/{ver})'
f' - [Full log](https://github.com/taichi-dev/taichi/releases/tag/{ver})'
)
print()

print('Full changelog:')
for c in all_changes:
Expand Down

0 comments on commit 5876190

Please sign in to comment.