Skip to content

Commit

Permalink
fix: bump version (#32)
Browse files Browse the repository at this point in the history
* fix: bump version
* chore(makefile): update targets
  • Loading branch information
DeadNews committed Mar 22, 2024
1 parent a9143cf commit 5d247c8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[formatting]
allowed_blank_lines = 1
2 changes: 2 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[files]
extend-exclude = ["Cargo.lock"]
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 = "deadnews-template-rust"
version = "0.1.2"
version = "0.1.4"
edition = "2021"
description = "Rust Project Template"
repository = "https://github.com/DeadNews/deadnews-template-rust"
Expand Down
16 changes: 4 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
.PHONY: all clean test checks default docker
.PHONY: all clean default build install checks pc test

default: build

build:
cargo build

pc-install:
install:
pre-commit install

checks: pc-run test
checks: pc test

pc-run:
pc:
pre-commit run -a

test:
Expand All @@ -24,11 +24,3 @@ clippy:

doc:
cargo doc --no-deps --document-private-items --all-features --workspace --examples

docker: compose-up

compose-up:
docker compose up --build

compose-down:
docker compose down

0 comments on commit 5d247c8

Please sign in to comment.