File tree 4 files changed +52
-3
lines changed
4 files changed +52
-3
lines changed Original file line number Diff line number Diff line change 6
6
- " v*"
7
7
8
8
jobs :
9
- test :
9
+ publish :
10
10
name : Publish
11
11
runs-on : ubuntu-latest
12
12
steps :
27
27
with :
28
28
command : publish
29
29
args : --verbose --all-features
30
+
31
+ - name : Set Environment Variables
32
+ run : |
33
+ echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
34
+ echo "NO_PREFIX_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
35
+
36
+ - name : Create GitHub Release
37
+ uses : actions/create-release@v1
38
+ env :
39
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
+ with :
41
+ tag_name : ${{ github.ref }}
42
+ release_name : Release ${{ github.ref }}
43
+ body : https://crates.io/crates/nombytes/${{ env.NO_PREFIX_VERSION }}
44
+ draft : false
45
+ prerelease : false
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ## [ 0.1.1] - 2022-07-24
11
+
12
+ ### Added ✨
13
+
14
+ - Added ` serde ` support
15
+
16
+ ### Changed 🔧
17
+
18
+ - Updated README description
19
+ - Removed unnecessary cloning where possible
20
+
21
+ ### Fixed 🐛
22
+
23
+ - Fixed minor typo in README
24
+
25
+ ## [ 0.1.0] - 2022-07-23
26
+
27
+ ### Added ✨
28
+
29
+ - Project setup
30
+ - First release
31
+
32
+ [ 0.1.1 ] : https://github.com/alexschrod/nombytes/compare/v0.1...v0.1.1
33
+ [ 0.1.0 ] : https://github.com/alexschrod/nombytes/releases/tag/v0.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nombytes"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
edition = " 2021"
5
5
description = " A library that provides a wrapper for the bytes::Bytes byte container for use with nom"
6
6
license = " Apache-2.0 OR MIT"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Put this in your `Cargo.toml`:
26
26
27
27
``` toml
28
28
[dependencies ]
29
- nombytes = " 0.1"
29
+ nombytes = " 0.1.1 "
30
30
```
31
31
32
32
## Features
You can’t perform that action at this time.
0 commit comments