Skip to content

Commit

Permalink
fix: package version issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed May 6, 2024
1 parent c2c0fef commit f3a85f1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions:
on:
push:
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
- '*'
pull_request:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["HugoByte", "The HugoByte Team <hello@hugobyte.com>"]
edition = "2021"
repository = "https://github.com/hugobyte/composer.git"
version = "0.0.2"
version = "0.0.5"

# Config for 'cargo dist'
[workspace.metadata.dist]
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ tempfile = "3.2.0"
itertools = "0.12.1"
walkdir = "2"
anyhow = "1.0.65"
echo-library = "0.0.3"
composer-primitives = "0.0.2"
echo-library = "0.0.4"
composer-primitives = "0.0.3"
sys-info = "0.9.1"

[dependencies.clap]
Expand Down
4 changes: 2 additions & 2 deletions echo-library/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "echo-library"
version = "0.0.3"
version.workspace = true
edition.workspace = true
authors.workspace = true
license = "Apache-2.0"
Expand All @@ -17,5 +17,5 @@ thiserror = "1.0.50"
convert_case = "0.6.0"
itertools = "0.12.1"
walkdir = "2"
composer-primitives = "0.0.2"
composer-primitives = "0.0.3"
rayon = "1.8.1"
1 change: 1 addition & 0 deletions echo-library/src/common/composer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use starlark::eval::ReturnFileLoader;
use std::fs::OpenOptions;
use std::io::Write;
use std::path::Path;
use boilerplate::*;

use super::*;

Expand Down
4 changes: 0 additions & 4 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,3 @@ publish_allow_dirty = false

# disable running `cargo-semver-checks`
semver_check = false

[[package]]
name = "echo-library"
release = false

0 comments on commit f3a85f1

Please sign in to comment.