Skip to content

Commit 297b8ff

Browse files
authored
Bump version to 6.0.0-alpha.1 (not yet released) (#2078)
* Use `ink-node` over `ink-node-nightly` * Bump version to `6.0.0-alpha.2` * Revert me: Disable linting * Fix `ink` branch dep * Update changelog * Rewrite disabling to get rid of warnings * Set release version to `6.0.0-alpha.1` * Fix test * Revert me: Set executable * Revert me: Set executable * Revert chmod * Revert me: Set executable * Reference ink! `master` branch
1 parent 7e1e182 commit 297b8ff

File tree

15 files changed

+70
-277
lines changed

15 files changed

+70
-277
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@ jobs:
186186
with:
187187
name: nextest-archive-${{ matrix.os }}
188188

189+
- name: Set executable
190+
run: chmod +x /usr/local/cargo/bin/*
191+
189192
- name: Run tests
190193
run: cargo nextest run --archive-file nextest-archive-${{ matrix.os }}.tar.zst --partition count:${{ matrix.partition }}/4 -E 'not (test(integration_tests) | package(contract-build))'
191194

@@ -222,6 +225,9 @@ jobs:
222225
with:
223226
name: nextest-archive-${{ matrix.os }}
224227

228+
- name: Set executable
229+
run: chmod +x /usr/local/cargo/bin/*
230+
225231
- name: Run integration tests
226232
# The integration tests cannot be run in parallel
227233
run: cargo nextest run --archive-file nextest-archive-${{ matrix.os }}.tar.zst --partition count:${{ matrix.partition }}/4 -j 1 -E 'test(integration_tests)'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
[Unreleased]
88

9+
## [6.0.0-alpha.1]
10+
911
### Added
1012
- Support setting ABI in `Cargo.toml` and propagate ABI into build environment via `cfg` flag - [#2033](https://github.com/use-ink/cargo-contract/pull/2033)
1113
- Add `cargo contract test` subcommand - [#2034](https://github.com/use-ink/cargo-contract/pull/2034)
@@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2527
- Declare `ink_abi` as an expected `cfg` in new project `Cargo.toml` template - [#2058](https://github.com/use-ink/cargo-contract/pull/2058)
2628
- Allow setting target directory for contract builds - [#2063](https://github.com/use-ink/cargo-contract/pull/2063)
2729
- Include ABI declaration in new project template - [#2066](https://github.com/use-ink/cargo-contract/pull/2066)
30+
- Synchronized with `polkadot-sdk/cb629d46ebf00aa65624013a61f9c69ebf02b0b4` - [#2077](https://github.com/use-ink/cargo-contract/pull/2077)
2831

2932
## [6.0.0-alpha]
3033

0 commit comments

Comments
 (0)