Skip to content

Commit

Permalink
Release v1.0.5
Browse files Browse the repository at this point in the history
Signed-off-by: FedericoBruzzone <federico.bruzzone.i@gmail.com>
Co-authored-by: Andrea Longoni <Andreal2000@users.noreply.github.com>
  • Loading branch information
FedericoBruzzone and Andreal2000 committed Aug 8, 2024
1 parent d14368d commit f52c60b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ 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.5] - 2024-08-08

### Added
- Add `CHANGELOG.md` file to the project.

### Changed
- Now windows is linked correctly with `tdjson.lib` and `tdjson.dll`. But need to be fixed because the solution is not the best; we need to find the same solution for all platforms.

### Fixed
- Now the documentation is generated correctly. All functions in `src/build.rs` are documented.

## [1.0.4] - 2024-06-24

Expand Down
4 changes: 2 additions & 2 deletions tdlib-rs-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tdlib-rs-gen"
version = "1.0.4"
version = "1.0.5"
authors = [
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
"Andrea Longoni",
Expand All @@ -20,4 +20,4 @@ keywords = [
description = "Rust code generator from TDLib's API definitions."

[dependencies]
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.4" }
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.5" }
2 changes: 1 addition & 1 deletion tdlib-rs-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tdlib-rs-parser"
version = "1.0.4"
version = "1.0.5"
authors = [
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
"Andrea Longoni",
Expand Down
6 changes: 3 additions & 3 deletions tdlib-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tdlib-rs"
version = "1.0.4"
version = "1.0.5"
authors = [
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
"Andrea Longoni",
Expand Down Expand Up @@ -47,8 +47,8 @@ zip = { version = "2.0.0", optional = true }
dirs = "5.0.1"

[build-dependencies]
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.4" }
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.4" }
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.5" }
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.5" }
system-deps = { version = "7", optional = true }
reqwest = { version = "0.12.4", features = ["blocking"], optional = true }
zip = { version = "2.0.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tdlib-rs/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// The version of the TDLib library.
const TDLIB_VERSION: &str = "1.8.29";
#[cfg(feature = "download-tdlib")]
const TDLIB_CARGO_PKG_VERSION: &str = "1.0.4";
const TDLIB_CARGO_PKG_VERSION: &str = "1.0.5";

// WARNING: This function is not used in the current version of the library.
// #[cfg(not(any(feature = "docs", feature = "pkg-config", feature = "download-tdlib")))]
Expand Down

0 comments on commit f52c60b

Please sign in to comment.