Skip to content

Commit

Permalink
chore: Delete bump.sh script, now replaced by release.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Mar 3, 2024
1 parent 69d5de9 commit 0f72924
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 37 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -53,7 +53,6 @@ jobs:
python-version: 3.12
- run: |
rustup update
python -m venv .venv
./scripts/test-python.sh
cov:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
### ⚙️ Continuous Integration

- Fix test workflow, add cargo deny - ([a418526](https://github.com/vemonet/nanopub-rs/commit/a4185260a111e5e4b5d2815115da0d5c82df506a))
- Add git cliff to generate changelog - ([85d244f](https://github.com/vemonet/nanopub-rs/commit/85d244f0cfc21ef5fed9d9238cf72dfd892230c4))

### 🐛 Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "0.0.18"
version = "0.0.17"
authors = ["Vincent Emonet <vincent.emonet@gmail.com>"]
edition = "2021"
repository = "https://github.com/vemonet/nanopub-rs"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ homepage.workspace = true
categories.workspace = true

[dependencies]
nanopub = { version = "0.0.18", path = "../lib" }
nanopub = { version = "0.0.17", path = "../lib" }
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
tokio = { version = "1.34", features = ["macros", "rt-multi-thread"] }
2 changes: 1 addition & 1 deletion cliff.toml
Expand Up @@ -17,7 +17,7 @@ body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first | trim_end }} - ([{{ commit.id | truncate(length=7, end="") }}](<REPO>/commit/{{ commit.id }}))\
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first | trim }} - ([{{ commit.id | truncate(length=7, end="") }}](<REPO>/commit/{{ commit.id }}))\
{% endfor %}
{% endfor %}\n
"""
Expand Down
2 changes: 1 addition & 1 deletion js/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ categories.workspace = true
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.0.18", path = "../lib" }
nanopub = { version = "0.0.17", path = "../lib" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wasm-bindgen-derive = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions lib/docs/contributing.md
@@ -1,5 +1,7 @@
# 🛠️ Contributing

[![Build](https://github.com/vemonet/nanopub-rs/actions/workflows/build.yml/badge.svg)](https://github.com/vemonet/nanopub-rs/actions/workflows/build.yml) [![Lint and Test](https://github.com/vemonet/nanopub-rs/actions/workflows/test.yml/badge.svg)](https://github.com/vemonet/nanopub-rs/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/vemonet/nanopub-rs/graph/badge.svg?token=BF15PSO6GN)](https://codecov.io/gh/vemonet/nanopub-rs) [![dependency status](https://deps.rs/repo/github/vemonet/nanopub-rs/status.svg)](https://deps.rs/repo/github/vemonet/nanopub-rs)

The usual process to make a contribution is to:

1. Check for existing related [issues on GitHub](https://github.com/vemonet/nanopub-rs/issues)
Expand Down Expand Up @@ -54,8 +56,6 @@ nanopub-rs/

## 🧑‍💻 Development workflow

[![Build](https://github.com/vemonet/nanopub-rs/actions/workflows/build.yml/badge.svg)](https://github.com/vemonet/nanopub-rs/actions/workflows/build.yml) [![Lint and Test](https://github.com/vemonet/nanopub-rs/actions/workflows/test.yml/badge.svg)](https://github.com/vemonet/nanopub-rs/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/vemonet/nanopub-rs/graph/badge.svg?token=BF15PSO6GN)](https://codecov.io/gh/vemonet/nanopub-rs) [![dependency status](https://deps.rs/repo/github/vemonet/nanopub-rs/status.svg)](https://deps.rs/repo/github/vemonet/nanopub-rs)

[Rust](https://www.rust-lang.org/tools/install), python, and NodeJS are required for development.

Install development dependencies:
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ name = "nanopub_sign"
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.0.18", path = "../lib" }
nanopub = { version = "0.0.17", path = "../lib" }
pyo3 = { version = "0.20", features = ["extension-module"] }
pyo3-asyncio = "0.20"
tokio = { version = "1.34", features = ["rt-multi-thread"] }
Expand Down
29 changes: 0 additions & 29 deletions scripts/bump.sh

This file was deleted.

5 changes: 5 additions & 0 deletions scripts/test-python.sh
@@ -1,6 +1,11 @@
#!/usr/bin/env bash
set -e

if [ ! -d ".venv" ]; then
echo ".venv virtual environment does not exist. Creating it"
python -m venv .venv
fi

echo "Activating virtual environment"
source .venv/bin/activate

Expand Down

0 comments on commit 0f72924

Please sign in to comment.