Skip to content

Commit 81f9743

Browse files
authored
Merge pull request #51 from CoLearn-Dev/0.2.11
instant server: fixed server version
2 parents 08119c2 + 00899b3 commit 81f9743

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "colink"
3-
version = "0.2.10"
3+
version = "0.2.11"
44
edition = "2021"
55
description = "CoLink Rust SDK"
66
license = "MIT"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CoLink SDK helps both application and protocol developers access the functionali
99
Add this to your Cargo.toml:
1010
```toml
1111
[dependencies]
12-
colink = "0.2.10"
12+
colink = "0.2.11"
1313
```
1414

1515
## Getting Started

src/extensions/instant_server.rs

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ impl InstantServer {
4848
.arg("bash -c \"$(curl -fsSL https://raw.githubusercontent.com/CoLearn-Dev/colinkctl/main/install_colink.sh)\"")
4949
.env("COLINK_INSTALL_SERVER_ONLY", "true")
5050
.env("COLINK_INSTALL_SILENT", "true")
51+
.env("COLINK_SERVER_VERSION", "v0.2.9")
5152
.status()
5253
.unwrap();
5354
}

tests/download-server.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33
rm -rf colink-server
44
mkdir colink-server && cd colink-server
5-
wget https://github.com/CoLearn-Dev/colink-server-dev/releases/download/v0.2.0/colink-server-linux-x86_64.tar.gz
5+
wget https://github.com/CoLearn-Dev/colink-server-dev/releases/download/v0.2.9/colink-server-linux-x86_64.tar.gz
66
tar -xzf colink-server-linux-x86_64.tar.gz
77
touch user_init_config.toml # create an empty user init config to prevent automatically starting protocols when importing users.
88
cd ..

0 commit comments

Comments
 (0)