Skip to content

Commit

Permalink
Update version (v0.6.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Jan 4, 2023
1 parent 0bdedef commit c493ed7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ jobs:
# os: ubuntu-latest
- target: aarch64-apple-darwin
os: macos-latest
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-latest
# Erg has to link to libc statically, so we need to use musl
- target: x86_64-unknown-linux-musl
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
# - target: x86_64-unknown-linux-musl
# os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
Expand All @@ -48,5 +47,8 @@ jobs:
bin: erg
target: ${{ matrix.target }}
include: compiler/erg_compiler/lib
features: els
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# static linking to libc
RUSTFLAGS: ${{ (matrix.target == 'x86_64-unknown-linux-gnu' && '-C target-feature=+crt-static') || '' }}
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ members = [
]

[workspace.package]
version = "0.6.1-nightly.1"
version = "0.6.1"
authors = ["erg-lang team <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -61,10 +61,10 @@ py_compatible = ["erg_compiler/py_compatible", "els/py_compatible"]
els = ["erg_common/els", "erg_compiler/els", "dep:els"]

[workspace.dependencies]
erg_common = { version = "0.6.1-nightly.1", path = "./compiler/erg_common" }
erg_parser = { version = "0.6.1-nightly.1", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.6.1-nightly.1", path = "./compiler/erg_compiler" }
els = { version = "0.6.1-nightly.1", path = "./compiler/els" }
erg_common = { version = "0.6.1", path = "./compiler/erg_common" }
erg_parser = { version = "0.6.1", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.6.1", path = "./compiler/erg_compiler" }
els = { version = "0.1.13", path = "./compiler/els" }

[dependencies]
erg_common = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion compiler/els/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "els"
description = "An Erg compiler frontend for IDEs, implements LSP."
documentation = "http://docs.rs/els"
version.workspace = true
version = "0.1.13"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down

0 comments on commit c493ed7

Please sign in to comment.