Skip to content

Commit ddc2608

Browse files
committedJan 3, 2022
chore(release): 0.12.0
1 parent 515bfc5 commit ddc2608

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ jobs:
4040

4141
- name: Build debug
4242
if: matrix.config.kind == 'test_debug'
43-
run: cargo build --verbose
43+
run: cargo build
4444
- name: Build release
4545
if: matrix.config.kind == 'test_release'
46-
run: cargo build --target wasm32-unknown-unknown --release --verbose --features "wasm"
46+
run: cargo build --target wasm32-unknown-unknown --release --features "wasm"
4747

4848
- name: Test debug
4949
if: matrix.config.kind == 'test_debug'
50-
run: cargo test --verbose
50+
run: cargo test
5151
- name: Test release
5252
if: matrix.config.kind == 'test_release'
53-
run: cargo test --release --verbose
53+
run: cargo test --release
5454

5555
- name: Get tag version
5656
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dprint-plugin-markdown"
3-
version = "0.11.3"
3+
version = "0.12.0"
44
authors = ["David Sherret <dsherret@gmail.com>"]
55
edition = "2021"
66
homepage = "https://github.com/dprint/dprint-plugin-markdown"

0 commit comments

Comments
 (0)