mirror of
https://github.com/spacemeowx2/blflash.git
synced 2024-11-16 20:09:45 +00:00
chore: bump version to 0.2.2
This commit is contained in:
parent
405ff37827
commit
82c3310d11
30
.github/workflows/publish.yml
vendored
Normal file
30
.github/workflows/publish.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
name: Publish
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache Cargo
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo
|
||||
key: ubuntu-latest-stable-cargo-v1
|
||||
restore-keys: |
|
||||
ubuntu-latest-stable-cargo-v1
|
||||
- name: Setup toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
override: true
|
||||
- name: cargo publish
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: publish
|
||||
args: -p blflash --token ${{ secrets.CRATES_IO_TOKEN }}
|
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
@ -87,5 +87,3 @@ jobs:
|
||||
file: target/${{ matrix.target }}/release/blflash
|
||||
asset_name: blflash-${{ matrix.target }}
|
||||
tag: ${{ github.ref }}
|
||||
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -84,7 +84,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "blflash"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
"crc",
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "blflash"
|
||||
description = "BL602 serial flasher."
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["spacemeowx2 <spacemeowx2@gmail.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
Loading…
Reference in New Issue
Block a user