Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit d6fe10c

Browse files
author
Flix
committed
release: v0.1.0
1 parent 0bb1509 commit d6fe10c

2 files changed

Lines changed: 46 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [0.1.0] - 2023-09-02
6+
7+
### Bug Fixes
8+
9+
- Select JSON if it succeeds
10+
11+
### Continuous Integration Pipeline
12+
13+
- Add CI
14+
15+
### Features
16+
17+
- Implement basic CLI
18+
- Implement (automatic) conversion
19+
20+
### Miscellaneous Tasks
21+
22+
- Improve CLI style
23+
- Add README
24+
25+
### Refactor
26+
27+
- Write the newline into the writer
28+
- Use transcoding instead of temporary values
29+
- Rename crate
30+
31+
### Testing
32+
33+
- Write tests
34+
35+
<!-- generated by git-cliff -->

Cargo.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
[package]
2+
authors = ["Flix <felix.dommes@rwth-aachen.de>"]
3+
categories = ["command-line-utilities", "encoding"]
4+
description = "CLI tool to convert MessagePack data to JSON and vice versa."
5+
documentation = "https://github.com/FlixCoder/msgpack-cli"
6+
edition = "2021"
7+
homepage = "https://github.com/FlixCoder/msgpack-cli"
8+
keywords = ["msgpack", "json", "cli"]
9+
license = "MIT"
210
name = "messagepack-cli"
11+
readme = "README.md"
12+
repository = "https://github.com/FlixCoder/msgpack-cli"
13+
resolver = "2"
314
version = "0.1.0"
4-
edition = "2021"
515

616
[[bin]]
717
name = "mpc"

0 commit comments

Comments
 (0)