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

Sdk 47 #79

Merged
merged 29 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5cd88ef
Merge pull request #76 from neutron-org/feat/new-schema
pr0n00gler Aug 22, 2023
d5ebd33
f
quasisamurai Aug 24, 2023
69e691a
empty comm
quasisamurai Aug 24, 2023
11ec8d5
upd
quasisamurai Aug 24, 2023
87a83d7
upd-sdk
quasisamurai Aug 24, 2023
291c095
upd-sdk
quasisamurai Aug 25, 2023
a83360f
Merge pull request #77 from neutron-org/feat/admin-module-sdk47
pr0n00gler Sep 8, 2023
d7c9d3c
add missing upgrade handlers for pre propose single/multiple, distrib…
NeverHappened Sep 22, 2023
e86e0d8
fix problem with proposal message
NeverHappened Sep 23, 2023
a6ee752
run make schema
NeverHappened Sep 23, 2023
8d355bd
get back old deprecate proposals
NeverHappened Sep 28, 2023
088dc03
use neutron-sdk branch sdk/47
NeverHappened Oct 10, 2023
11037b2
Merge pull request #81 from neutron-org/fix/deprecate-old-admin-propo…
pr0n00gler Oct 10, 2023
f36f792
Merge branch 'sdk-47' into fix/upgrade
NeverHappened Oct 10, 2023
c68b6c5
Merge pull request #80 from neutron-org/fix/upgrade
pr0n00gler Oct 11, 2023
499f9d8
Merge branch 'main' into sdk-47
pr0n00gler Nov 15, 2023
aee9102
rm wrong migration body
quasisamurai Nov 16, 2023
c6bdbf4
rm unused imports
quasisamurai Nov 16, 2023
2a32a68
rm wrong test
quasisamurai Nov 16, 2023
da57ade
rm unused test imports
quasisamurai Nov 16, 2023
c086fa6
clippy
quasisamurai Nov 16, 2023
d787d2b
bump neutron-sdk to 0.8.0
pr0n00gler Dec 22, 2023
6be67d3
serde-json-wasm 1.0.1, 0.5.2
pr0n00gler Jan 30, 2024
f76c8d8
neutron-sdk 0.9.0, rust 1.73.0
pr0n00gler Mar 18, 2024
e6d2b50
update rust toolchain in github actions
pr0n00gler Mar 18, 2024
cfcd392
cw optimiser version
pr0n00gler Mar 18, 2024
0745eb6
Merge branch 'main' into sdk-47
pr0n00gler Mar 22, 2024
5c503d7
new patch versions of contracts
pr0n00gler Mar 25, 2024
7ee7c7e
update contract versions
pr0n00gler Mar 25, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
inputs:
toolchain:
description: 'Default Rust Toolchain'
default: "1.71.0"
default: "1.73.0"
required: true
type: string
target:
Expand All @@ -31,7 +31,7 @@ on:
type: string

env:
TOOLCHAIN: ${{ inputs.toolchain || '1.71.0' }}
TOOLCHAIN: ${{ inputs.toolchain || '1.73.0' }}
TARGET: ${{ inputs.target || 'wasm32-unknown-unknown' }}
REF: ${{ github.event_name == 'push' && github.ref || inputs.branch || 'main' }}
ID: ${{ inputs.id || 'scheduled' }}
Expand All @@ -46,7 +46,7 @@ jobs:
ref: ${{ env.REF }}
fetch-depth: 0
- name: Save SHA
run: echo "sha=$(/usr/bin/git log -1 --format='%H')" >> $GITHUB_ENV
run: echo "sha=$(/usr/bin/git log -1 --format='%H')" >> $GITHUB_ENV
- name: Check input type
run: |
if git show-ref --quiet --heads $REF; then
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.0
toolchain: 1.73.0
components: clippy
profile: minimal
override: true
Expand All @@ -31,7 +31,7 @@ jobs:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.0
toolchain: 1.73.0
components: rustfmt
profile: minimal
override: true
Expand All @@ -42,14 +42,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
os: [ macOS-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.0
toolchain: 1.73.0
profile: minimal
- run: cargo fetch --verbose
- run: cargo build
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
# will have compiled files and executables
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

Expand Down
Loading
Loading