Skip to content

Commit

Permalink
chore: publish 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioArnt committed Jan 16, 2024
1 parent 99c3b7b commit c7b514e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set the release version
runs-on: macos-latest
shell: bash
run: |
export RELEASE_VERSION=${GITHUB_REF:11}
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
sh ./version.sh $RELEASE_VERSION
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "robespierre"
version = "0.0.2"
version = "0.0.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
12 changes: 6 additions & 6 deletions npm/robespierre/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "robespierre",
"version": "0.0.2",
"version": "0.0.3",
"description": "Find extraneous and implicit dependencies by comparing your manifest and actual imports in your code using AST parsing",
"bin": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -35,12 +35,12 @@
"typescript": "^5.1.3"
},
"optionalDependencies": {
"robespierre-linux-x64": "0.0.2",
"robespierre-linux-x64": "0.0.3",
"robespierre-linux-arm64":"0.0.0",
"robespierre-darwin-x64": "0.0.2",
"robespierre-darwin-arm64": "0.0.2",
"robespierre-windows-x64": "0.0.2",
"robespierre-windows-arm64": "0.0.2"
"robespierre-darwin-x64": "0.0.3",
"robespierre-darwin-arm64": "0.0.3",
"robespierre-windows-x64": "0.0.3",
"robespierre-windows-arm64": "0.0.3"
},
"eslintConfig": {
"extends": [
Expand Down
1 change: 1 addition & 0 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ sed -Ei '' "s/\"robespierre-([a-z0-9-]+)\": \"[0-9\.]+\"/\"robespierre-\1\": \"$
sed -Ei '' "s/^version = \"[0-9\.]+\"$/version = \"${release}\"/" ./Cargo.toml
cat ./npm/robespierre/package.json
cat ./Cargo.toml
cargo build

0 comments on commit c7b514e

Please sign in to comment.