Skip to content

Commit 258ce1a

Browse files
committed
Publish v0.1.1
1 parent bf3e21c commit 258ce1a

File tree

4 files changed

+52
-3
lines changed

4 files changed

+52
-3
lines changed

.github/workflows/Publish.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "v*"
77

88
jobs:
9-
test:
9+
publish:
1010
name: Publish
1111
runs-on: ubuntu-latest
1212
steps:
@@ -27,3 +27,19 @@ jobs:
2727
with:
2828
command: publish
2929
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

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nombytes"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "A library that provides a wrapper for the bytes::Bytes byte container for use with nom"
66
license = "Apache-2.0 OR MIT"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Put this in your `Cargo.toml`:
2626

2727
```toml
2828
[dependencies]
29-
nombytes = "0.1"
29+
nombytes = "0.1.1"
3030
```
3131

3232
## Features

0 commit comments

Comments
 (0)