diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ef0046e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,50 @@ +# Change Log +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] - yyyy-mm-dd +Here we write upgrading notes for brands. It's a team effort to make them as straightforward as possible. +### Added +### Changed +### Fixed + +## [1.0.0] - 2024-08-09 + +### Added + +#### Telegram API +- project configuration for APIs +- Authentication +- Receive messages +- Send messages +- Handle updates from server +- Handle login +- Handle logout +- Handle view message +- Change user status to online and offline +- Display messages with time of arrival +- Display if messages has been readed +- Edit message +- Delete message +- Copy message +- Reply message +- Handle message edited + +#### Config +- Logger config +- Keybindings config +- App config +- Theme config +- Telegram config + +#### CI/CD +- CI for Linux +- CI for MacOS Intel +- CI for MacOS arm64 +- CI for Windows +- CD for release + +### Changed + +### Fixed diff --git a/Cargo.toml b/Cargo.toml index 83311af..d41fbd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "tgt" -version = "0.1.10" +version = "1.0.0" edition = "2021" description = "A simple TUI for Telegram" license = "MIT OR Apache-2.0" -documentation = "https://docs.rs/crate/tgt/0.1.10" +documentation = "https://docs.rs/crate/tgt/1.0.0" homepage = "https://github.com/FedericoBruzzone/tgt" repository = "https://github.com/FedericoBruzzone/tgt" readme = "README.md"