Skip to content

Commit b5551d8

Browse files
committed
heta compiler 0.9.1
1 parent 1d55745 commit b5551d8

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
matrix:
1616
version:
1717
- '1.9' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
18+
- 'lts' # Long time support version
1819
- '1' # automatically expands to the latest stable 1.x release of Julia
19-
# - 'nightly'
2020
os:
2121
- ubuntu-latest
2222
- macos-latest

Artifacts.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
[[heta_app]]
22
arch = "x86_64"
3-
git-tree-sha1 = "3555032f7d9bf3667af7c796e7c5e6ef65ab184d"
3+
git-tree-sha1 = "7a83040d485316c22ecef2b664b35a33aa440bd5"
44
libc = "glibc"
55
os = "linux"
66

77
[[heta_app.download]]
8-
sha256 = "93b951ccf358cdd06f525a6022d1fae801d9e135f7196d082bc1b1ff44069058"
9-
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.9.0/heta-compiler-linux.tar.gz"
8+
sha256 = "f9f048ea9485de1fdea25da994af467acb791a81905f96f543158c0954265bda"
9+
url = "https://github.com/hetalang/heta-compiler/releases/download/0.9.1/heta-compiler-linux.tar.gz"
1010
[[heta_app]]
1111
arch = "x86_64"
12-
git-tree-sha1 = "f9a91d0fab917fbd4567bd9c1330670483f77431"
12+
git-tree-sha1 = "b9db1bbb1880eff0e7fb132fb8667b6a49329ec1"
1313
os = "windows"
1414

1515
[[heta_app.download]]
16-
sha256 = "950b729cf15a60ab83bd3997b9cc0424f0f8885b311d319690052093c9bc2ef6"
17-
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.9.0/heta-compiler-windows.tar.gz"
16+
sha256 = "51886e6dc13675f5e9c388195677f50f16276e196201799bdcb2765f8b07e425"
17+
url = "https://github.com/hetalang/heta-compiler/releases/download/0.9.1/heta-compiler-windows.tar.gz"
1818
[[heta_app]]
1919
arch = "x86_64"
20-
git-tree-sha1 = "0da38cac8b6fbf9d7d20316a2b1c0e6dc1b4adc3"
20+
git-tree-sha1 = "e7da3b902999a5324eb13d6c1c4ee2cf5308a956"
2121
os = "macos"
2222

2323
[[heta_app.download]]
24-
sha256 = "8cb8bf7d3fe70926726074debd3692ac641903623669e3d0930552eb2c8ed8be"
25-
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.9.0/heta-compiler-macos.tar.gz"
24+
sha256 = "b6afac6febab1536224e9abcead7f7b31ddd14061e8135f3cbfc0212b326fcd3"
25+
url = "https://github.com/hetalang/heta-compiler/releases/download/0.9.1/heta-compiler-macos.tar.gz"
2626
[[heta_app]]
2727
arch = "aarch64"
28-
git-tree-sha1 = "0da38cac8b6fbf9d7d20316a2b1c0e6dc1b4adc3"
28+
git-tree-sha1 = "e7da3b902999a5324eb13d6c1c4ee2cf5308a956"
2929
os = "macos"
3030

3131
[[heta_app.download]]
32-
sha256 = "8cb8bf7d3fe70926726074debd3692ac641903623669e3d0930552eb2c8ed8be"
33-
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.9.0/heta-compiler-macos.tar.gz"
32+
sha256 = "b6afac6febab1536224e9abcead7f7b31ddd14061e8135f3cbfc0212b326fcd3"
33+
url = "https://github.com/hetalang/heta-compiler/releases/download/0.9.1/heta-compiler-macos.tar.gz"

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 0.7.2
4+
5+
- heta-compiler updated to 0.9.2
6+
- lts added to ci
7+
38
## 0.7.1
49

510
- `spaceFilter` fixed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HetaSimulator"
22
uuid = "630b40c4-2f38-41ff-bcb3-b2c7232fed0d"
33
authors = ["Ivan Borisov", "Evgeny Metelkin"]
4-
version = "0.7.1"
4+
version = "0.7.2"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

artifacts_scripts/build_artifacts.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using ArtifactUtils
22
using Pkg.Artifacts
33

4-
const HETA_COMPILER_RELEASE = "v0.9.0"
4+
const HETA_COMPILER_RELEASE = "0.9.1"
55

66
const artifacts_toml = joinpath(@__DIR__, "..", "Artifacts.toml")
77

src/HetaSimulator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module HetaSimulator
77
import Base: SHA1
88

99
# heta-compiler supported version
10-
const HETA_COMPILER_VERSION = "0.9.0"
10+
const HETA_COMPILER_VERSION = "0.9.1"
1111
#const SUPPORTED_VERSIONS = ["0.8.4", "0.8.5", "0.8.6"]
1212

1313
function heta_compiler_load()

0 commit comments

Comments
 (0)