Skip to content

Commit a647b44

Browse files
chore: update dev (#10)
* chore(deps): bump futures-util from 0.3.5 to 0.3.6 Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.6. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](rust-lang/futures-rs@0.3.5...0.3.6) Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump serde from 1.0.114 to 1.0.116 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.114 to 1.0.116. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.114...v1.0.116) Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump warp from 0.2.4 to 0.2.5 Bumps [warp](https://github.com/seanmonstar/warp) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/seanmonstar/warp/releases) - [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md) - [Commits](seanmonstar/warp@v0.2.4...v0.2.5) Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump bcrypt from 0.8.1 to 0.8.2 Bumps [bcrypt](https://github.com/Keats/rust-bcrypt) from 0.8.1 to 0.8.2. - [Release notes](https://github.com/Keats/rust-bcrypt/releases) - [Commits](Keats/rust-bcrypt@v0.8.1...v0.8.2) Signed-off-by: dependabot[bot] <[email protected]> * chore(deps): bump simplelog from 0.7.6 to 0.8.0 Bumps [simplelog](https://github.com/drakulix/simplelog.rs) from 0.7.6 to 0.8.0. - [Release notes](https://github.com/drakulix/simplelog.rs/releases) - [Changelog](https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md) - [Commits](Drakulix/simplelog.rs@v0.7.6...v0.8.0) Signed-off-by: dependabot[bot] <[email protected]> * chore: get release going (#9) * improve * fix * chore: release * fix mail * install packages * fix release * fix: add dependencies * fix * fix: version * fix * chore: add package.json to dependabot Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4404104 commit a647b44

File tree

8 files changed

+5789
-129
lines changed

8 files changed

+5789
-129
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ updates:
77
commit-message:
88
prefix: "chore"
99
include: "scope"
10+
- package-ecosystem: "npm"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
commit-message:
15+
prefix: "chore"
16+
include: "scope"

.github/workflows/release.yaml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ on:
55
- 'cross/**'
66
branches:
77
- master
8-
env:
9-
CI: true
10-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11-
CARGO_TOKEN: ${{ secrets.CARGO_TOKEN }}
128
jobs:
139
release:
1410
runs-on: ubuntu-latest
@@ -19,14 +15,13 @@ jobs:
1915
toolchain: stable
2016
- uses: actions-rs/[email protected]
2117
with:
22-
crate: semantic-rs
23-
version: latest
18+
crate: semantic-release-rust
19+
version: 1.0.0-alpha.6
2420
use-tool-cache: true
25-
- uses: actions/cache@v2
26-
with:
27-
path: |
28-
~/.cargo/registry
29-
~/.cargo/git
30-
target
31-
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
32-
- run: semantic-rs
21+
- uses: bahmutov/npm-install@v1
22+
- run: npm ci
23+
- name: Release
24+
env:
25+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_TOKEN }}
27+
run: npx semantic-release

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,5 @@ fabric.properties
117117
**/*.rs.bk
118118

119119
# End of https://www.toptal.com/developers/gitignore/api/clion,rust
120-
config.toml
120+
config.toml
121+
/node_modules/

.releaserc.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
plugins:
2+
- '@semantic-release/commit-analyzer'
3+
- '@semantic-release/release-notes-generator'
4+
- '@semantic-release/github'
5+
- - '@semantic-release/exec'
6+
- verifyConditionsCmd: "semantic-release-rust verify-conditions"
7+
prepareCmd: "semantic-release-rust prepare ${nextRelease.version}"
8+
publishCmd: "semantic-release-rust publish"

Cargo.lock

Lines changed: 30 additions & 113 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ log = "0.4"
1414
sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "runtime-tokio", "macros", "migrate"] }
1515
tokio = { version = "0.2", features = ["dns", "tcp", "udp"] }
1616
uuid = { version = "0.8", features = ["v4"] }
17-
simplelog = "0.7"
17+
simplelog = "0.8"
1818
bcrypt = "0.8"
1919
warp = { version = "0.2", default-features = false }
2020
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)