From 3a6c02dba67019633bb2c7f3809cd21f8970d2c9 Mon Sep 17 00:00:00 2001 From: frkri Date: Tue, 5 Mar 2024 08:49:15 +0000 Subject: [PATCH 1/5] Release v0.1.16 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d5c711a..4b22eec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1220,7 +1220,7 @@ dependencies = [ [[package]] name = "model_runner" -version = "0.1.1" +version = "0.1.16" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 68c759e..21832a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "model_runner" -version = "0.1.1" +version = "0.1.16" edition = "2021" [profile.dev] From 1836069affc1eb60c7173ceab6ded5fc4751d648 Mon Sep 17 00:00:00 2001 From: Frkri <57220519+frkri@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:50:39 +0000 Subject: [PATCH 2/5] test --- Compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Compose.yml b/Compose.yml index 0812848..377d79b 100644 --- a/Compose.yml +++ b/Compose.yml @@ -7,6 +7,8 @@ services: image: ghcr.io/frkri/modelrunner:latest container_name: model_runner build: + + context: . dockerfile: Dockerfile ports: From 267e36a5a39ce36513d98fa4a99ea709d44aebde Mon Sep 17 00:00:00 2001 From: Frkri <57220519+frkri@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:51:21 +0000 Subject: [PATCH 3/5] asda --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 372b3d8..1060fcd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -15,7 +15,7 @@ pub struct Config { /// The TLS configuration #[serde(default)] #[command(flatten)] - pub tls: ::Opt, + pub tls: Date: Tue, 5 Mar 2024 08:56:17 +0000 Subject: [PATCH 4/5] release --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3417276..83021a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: file_pattern: "Cargo.toml Cargo.lock" add-release-assets: - name: Add Release assets ${{ matrix.target }} + name: Release assets ${{ matrix.target }} runs-on: ubuntu-latest strategy: fail-fast: false @@ -47,6 +47,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Cache + uses: Swatinem/rust-cache@v2 + - name: Bump version in Cargo.toml and Cargo.lock run: | sed -i "s/^version = \".*\"/version = \"${TAG_VERSION:1}\"/" Cargo.toml From 5423178ed61d0f483e3ea4a777b31a11a32b5779 Mon Sep 17 00:00:00 2001 From: Frkri <57220519+frkri@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:57:01 +0000 Subject: [PATCH 5/5] dsa --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 1060fcd..372b3d8 100644 --- a/src/config.rs +++ b/src/config.rs @@ -15,7 +15,7 @@ pub struct Config { /// The TLS configuration #[serde(default)] #[command(flatten)] - pub tls: ::Opt, } #[derive(ClapSerde, Deserialize, Debug)]