Skip to content

Commit d8a0957

Browse files
authored
Merge pull request #16 from tofubert/release_0.1.0
bump version to 0.1.0 and add changelog
2 parents e9c86fb + eb0dac3 commit d8a0957

File tree

4 files changed

+40
-8
lines changed

4 files changed

+40
-8
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
12+
13+
14+
### Changed
15+
16+
17+
### Removed
18+
19+
20+
## [0.1.0] - 2025-01-11
21+
22+
### Added
23+
24+
- initial release of sechat-rs
25+
26+
27+
[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.1.0...HEAD
28+
[0.1.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.1.0

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name = "sechat-rs"
33
description = "A TUI based chat client for Nextcloud Talk"
44
readme = "README.md"
55
license-file = "LICENSE"
6-
version = "0.1.0-beta"
6+
version = "0.1.0"
77
edition = "2018"
88
categories = ["command-line-utilities"]
99
keywords = ["tui", "nextcloud", "nextcloud-talk"]
1010
authors = ["tofu <sechat@tofuli.de>"]
11-
documentation = "https://github.com/tofubert/sechat-rs"
11+
documentation = "https://docs.rs/sechat-rs/latest/sechat-rs/"
1212
repository = "https://github.com/tofubert/sechat-rs"
13-
homepage = "https://github.com/tofubert/sechat-rs"
13+
homepage = "https://crates.io/crates/sechat-rs"
1414
exclude = [
1515
"assets/*",
1616
".github",
@@ -20,7 +20,7 @@ exclude = [
2020
"tags",
2121
]
2222
[[bin]]
23-
name = "sechat"
23+
name = "sechat-rs"
2424
path = "src/main.rs"
2525

2626

@@ -45,8 +45,8 @@ crossterm = "*"
4545
tui-tree-widget = "0.23"
4646
futures = "0.3.31"
4747
chrono = "0.4.39"
48-
num-traits = "*"
49-
num-derive = "*"
48+
num-traits = "0.2.19"
49+
num-derive = "0.4.2"
5050
log = "0.4.22"
5151
notify-rust = "4.11"
5252
itertools = "0.14.0"

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@
88
[![Dependency status](https://deps.rs/repo/github/tofubert/sechat-rs/status.svg)](https://deps.rs/repo/github/tofubert/sechat-rs)
99

1010

11+
12+
> [!WARNING]
13+
> This Software is not a fully stable client. You should not rely on this client for important chats!
14+
1115
## Setup
1216

13-
* run "cargo r" or "sechat" and enjoy
17+
* run "cargo r" or "sechat-rs" and enjoy
1418
* If no config is found a default config will be created, which you can fill in.
1519
* a "-c" Option for console exists, if none is proveded it will default to XDG default paths.
1620
* Logs will be written to "dev.log". This is so we dont write log output into the terminal UI.

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
//! [Codecov]: https://app.codecov.io/gh/tofubert/sechat-rs
8787
//! [Deps.rs Badge]: https://deps.rs/repo/github/tofubert/sechat-rs/status.svg?style=flat-square
8888
//! [Deps.rs]: https://deps.rs/repo/github/tofubert/sechat-rs
89-
//! [Docs Badge]: https://img.shields.io/docsrs/ratatui?logo=rust&style=flat-square&logoColor=E05D44
89+
//! [Docs Badge]: https://img.shields.io/docsrs/sechat-rs?logo=rust&style=flat-square&logoColor=E05D44
9090
9191
mod backend;
9292
/// Config and Theme Module

0 commit comments

Comments
 (0)