Skip to content

Commit fdfc1bc

Browse files
leighmccullochgraydonsisureshdmkozhbrson
authoredJul 13, 2023
Release Preview 10 (stellar#260)
* mention release preview version in readme * fix * Update build command (stellar#258) Co-authored-by: Leigh McCulloch <[email protected]> * Bump sdk for preview 10 (stellar#262) * Bump sdk for token and implement temporary allowances * Update rest of examples * Update atomic swap example. * Update multiswap example * fix more examples * Fix events example * Update auth example * Update timelock example * fix tests --------- Co-authored-by: Dmytro Kozhevin <[email protected]> * Add/update examples with new functionality (stellar#261) * Change deployer example to deploy contracts on behalf of any address. * Bump SDK to 0.9.1 * Add example for deep sub-contract auth. * Add makefile for a new example * !fixup makefile fix * Fix event name (stellar#264) * Add a fuzzing example. (stellar#265) * Bump increment (stellar#267) * Added instance bump to increment * Bump sdk to 0.9.2 --------- Co-authored-by: Siddharth Suresh <[email protected]> * Add bumps to token example (stellar#268) * Update soroban cli version --------- Co-authored-by: Graydon Hoare <[email protected]> Co-authored-by: Siddharth Suresh <[email protected]> Co-authored-by: Dmytro Kozhevin <[email protected]> Co-authored-by: Brian Anderson <[email protected]> Co-authored-by: Garand Tyson <[email protected]>
1 parent c7972c9 commit fdfc1bc

File tree

130 files changed

+15795
-3493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+15795
-3493
lines changed
 

‎.github/workflows/rust.yml

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ jobs:
7676
- uses: stellar/actions/rust-cache@main
7777
- run: rustup update
7878
- run: rustup target add ${{ matrix.sys.target }}
79+
- uses: stellar/binaries@v16
80+
with:
81+
name: soroban-cli
82+
version: 0.8.7
7983
- run: make test
8084
env:
8185
CARGO_BUILD_TARGET: ${{ matrix.sys.target }}

‎.gitpod.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM gitpod/workspace-full:2023-01-16-03-31-28
22

33
RUN mkdir -p ~/.local/bin
4-
RUN curl -L -o ~/.local/bin/soroban https://github.com/stellar/soroban-tools/releases/download/v0.8.0/soroban-cli-0.8.0-x86_64-unknown-linux-gnu
4+
RUN curl -L -o ~/.local/bin/soroban https://github.com/stellar/soroban-tools/releases/download/v0.9.1/soroban-cli-0.9.1-x86_64-unknown-linux-gnu
55
RUN chmod +x ~/.local/bin/soroban
66
RUN curl -L https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-unknown-linux-musl.tar.gz | tar xz --strip-components 1 -C ~/.local/bin sccache-v0.3.3-x86_64-unknown-linux-musl/sccache
77
RUN chmod +x ~/.local/bin/sccache

0 commit comments

Comments
 (0)
Please sign in to comment.