Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish v2.2.0 #719

Merged
merged 30 commits into from
Jul 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
48448f8
Add publish script, fixups for publish (git dependencies aren't allowed)
JakeHartnell Jul 3, 2023
4f6e8ca
Use publish cw-core for DAO DAO v1 interface
JakeHartnell Jul 3, 2023
c6db0c1
Refactor publish script
JakeHartnell Jul 3, 2023
ffbc9fc
No wildcards... prevents publishing
JakeHartnell Jul 3, 2023
1e9a36d
Rename dao-macros -> dao-dao-macros (already taken)
JakeHartnell Jul 3, 2023
5d593c9
Version fixups for already published packages
JakeHartnell Jul 3, 2023
503cb16
Rename dao-core -> dao-dao (name take on crates.io)
JakeHartnell Jul 3, 2023
c960b3a
Rename cw-paginate -> cw-paginate-storage (name taken on crates.io)
JakeHartnell Jul 3, 2023
63a3f12
Add metadata for publishing
JakeHartnell Jul 3, 2023
4865bd6
Use published v1 packages
JakeHartnell Jul 3, 2023
9d28a31
Crago file cleanup
JakeHartnell Jul 3, 2023
76f0c46
Publish remaining packages
JakeHartnell Jul 3, 2023
0a598f3
Go back to wildcards
JakeHartnell Jul 4, 2023
b390df9
Clean up and rename
JakeHartnell Jul 4, 2023
b6c45cc
Breakout more stuff from dao-dao to dao-interface to reduce circular …
JakeHartnell Jul 5, 2023
cd50cd8
Remove dao-dao as a depenency of dao-voting
JakeHartnell Jul 5, 2023
6e1b0af
Fix newly emerged clippy error
JakeHartnell Jul 5, 2023
a3886f3
Remove dao-dao-macros dep from dao-interface
JakeHartnell Jul 5, 2023
3b72150
Publish packages script
JakeHartnell Jul 6, 2023
f13efbb
Test publish script v2.1.3
JakeHartnell Jul 6, 2023
8d4ac57
Switch CI from rust nightly to stable
JakeHartnell Jul 6, 2023
597feae
Update schema
JakeHartnell Jul 6, 2023
f57eb9a
Fix wrong package name in codecov
JakeHartnell Jul 6, 2023
89646ed
Don't tag version at end of publish script
JakeHartnell Jul 6, 2023
9698ac5
v2.1.5 published on crates.io successfully
JakeHartnell Jul 6, 2023
0f37b4b
Rename dao-dao -> dao-dao-core
JakeHartnell Jul 7, 2023
d385f03
Turn of codecov failures for now
JakeHartnell Jul 7, 2023
23aa976
v2.2.0 (will publish when merged to main)
JakeHartnell Jul 7, 2023
15b63fb
Fix last git dependency
JakeHartnell Jul 7, 2023
9a6d905
Fix integration test errors from dao-dao-core rename
JakeHartnell Jul 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install latest nightly toolchain
- name: Install latest stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
target: wasm32-unknown-unknown
override: true

- name: Run tests
uses: actions-rs/cargo@v1
with:
toolchain: nightly
toolchain: stable
command: unit-test
args: --locked
env:
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Compile WASM contract
uses: actions-rs/cargo@v1
with:
toolchain: nightly
toolchain: stable
command: wasm
args: --locked
env:
Expand All @@ -49,21 +49,21 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: rustfmt, clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
toolchain: nightly
toolchain: stable
command: fmt
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
toolchain: nightly
toolchain: stable
command: clippy
args: --all-targets -- -D warnings

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
uses: actions/checkout@v2
- name: Generate code coverage
run: >
cargo +nightly tarpaulin --verbose --workspace --out Xml --exclude-files test-contracts/* *test*.rs packages/dao-macros/* packages/dao-testing/* ci/*
cargo +nightly tarpaulin --verbose --workspace --out Xml --exclude-files test-contracts/* *test*.rs packages/dao-dao-macros/* packages/dao-testing/* ci/*
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
fail_ci_if_error: false
Loading