Skip to content

Commit

Permalink
Merge pull request #16 from tofubert/release_0.1.0
Browse files Browse the repository at this point in the history
bump version to 0.1.0 and add changelog
  • Loading branch information
tofubert authored Jan 11, 2025
2 parents e9c86fb + eb0dac3 commit d8a0957
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added



### Changed


### Removed


## [0.1.0] - 2025-01-11

### Added

- initial release of sechat-rs


[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.1.0
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name = "sechat-rs"
description = "A TUI based chat client for Nextcloud Talk"
readme = "README.md"
license-file = "LICENSE"
version = "0.1.0-beta"
version = "0.1.0"
edition = "2018"
categories = ["command-line-utilities"]
keywords = ["tui", "nextcloud", "nextcloud-talk"]
authors = ["tofu <sechat@tofuli.de>"]
documentation = "https://github.com/tofubert/sechat-rs"
documentation = "https://docs.rs/sechat-rs/latest/sechat-rs/"
repository = "https://github.com/tofubert/sechat-rs"
homepage = "https://github.com/tofubert/sechat-rs"
homepage = "https://crates.io/crates/sechat-rs"
exclude = [
"assets/*",
".github",
Expand All @@ -20,7 +20,7 @@ exclude = [
"tags",
]
[[bin]]
name = "sechat"
name = "sechat-rs"
path = "src/main.rs"


Expand All @@ -45,8 +45,8 @@ crossterm = "*"
tui-tree-widget = "0.23"
futures = "0.3.31"
chrono = "0.4.39"
num-traits = "*"
num-derive = "*"
num-traits = "0.2.19"
num-derive = "0.4.2"
log = "0.4.22"
notify-rust = "4.11"
itertools = "0.14.0"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
[![Dependency status](https://deps.rs/repo/github/tofubert/sechat-rs/status.svg)](https://deps.rs/repo/github/tofubert/sechat-rs)



> [!WARNING]
> This Software is not a fully stable client. You should not rely on this client for important chats!
## Setup

* run "cargo r" or "sechat" and enjoy
* run "cargo r" or "sechat-rs" and enjoy
* If no config is found a default config will be created, which you can fill in.
* a "-c" Option for console exists, if none is proveded it will default to XDG default paths.
* Logs will be written to "dev.log". This is so we dont write log output into the terminal UI.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
//! [Codecov]: https://app.codecov.io/gh/tofubert/sechat-rs
//! [Deps.rs Badge]: https://deps.rs/repo/github/tofubert/sechat-rs/status.svg?style=flat-square
//! [Deps.rs]: https://deps.rs/repo/github/tofubert/sechat-rs
//! [Docs Badge]: https://img.shields.io/docsrs/ratatui?logo=rust&style=flat-square&logoColor=E05D44
//! [Docs Badge]: https://img.shields.io/docsrs/sechat-rs?logo=rust&style=flat-square&logoColor=E05D44
mod backend;
/// Config and Theme Module
Expand Down

0 comments on commit d8a0957

Please sign in to comment.