From 7e7434f54a1b0361e7e740c0cb9537d5ecfbc04a Mon Sep 17 00:00:00 2001 From: Douman Date: Fri, 22 Mar 2019 19:47:18 +0300 Subject: [PATCH] 0.14.0: Correct Gab.com Post's ID type --- Cargo.toml | 2 +- README.md | 10 +++++----- src/lib/api/gab/data.rs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 31e8918..7e382f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fie" -version = "0.13.0" +version = "0.14.0" authors = ["Douman "] repository = "https://github.com/DoumanAsh/fie" description = "Small and cute social media utility." diff --git a/README.md b/README.md index 5846edb..a565846 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build status](https://ci.appveyor.com/api/projects/status/oc937oppd38x1y4y/branch/master?svg=true)](https://ci.appveyor.com/project/DoumanAsh/fie/branch/master) [![Build Status](https://travis-ci.org/DoumanAsh/fie.svg?branch=master)](https://travis-ci.org/DoumanAsh/fie) [![Crates.io](https://img.shields.io/crates/v/fie.svg)](https://crates.io/crates/fie) -[![Dependency status](https://deps.rs/crate/fie/0.13.0/status.svg)](https://deps.rs/crate/fie) +[![Dependency status](https://deps.rs/crate/fie/0.14.0/status.svg)](https://deps.rs/crate/fie) Small and cute social media CLI. @@ -11,10 +11,10 @@ Small and cute social media CLI. ## Download links -* Windows [32bit](https://github.com/DoumanAsh/fie/releases/download/0.12.1/fie-0.12.1-i686-pc-windows-msvc.zip) -* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.12.1/fie-0.12.1-x86_64-pc-windows-msvc.zip) -* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.12.1/fie-0.12.1-x86_64-unknown-linux-gnu.zip) -* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.12.1/fie-0.12.1-x86_64-apple-darwin.zip) +* Windows [32bit](https://github.com/DoumanAsh/fie/releases/download/0.14.0/fie-0.14.0-i686-pc-windows-msvc.zip) +* Windows [64bit](https://github.com/DoumanAsh/fie/releases/download/0.14.0/fie-0.14.0-x86_64-pc-windows-msvc.zip) +* Linux [64bit](https://github.com/DoumanAsh/fie/releases/download/0.14.0/fie-0.14.0-x86_64-unknown-linux-gnu.zip) +* OSX [64bit](https://github.com/DoumanAsh/fie/releases/download/0.14.0/fie-0.14.0-x86_64-apple-darwin.zip) ## Supported social platforms: diff --git a/src/lib/api/gab/data.rs b/src/lib/api/gab/data.rs index 3c0948c..02b20fd 100644 --- a/src/lib/api/gab/data.rs +++ b/src/lib/api/gab/data.rs @@ -79,7 +79,7 @@ impl<'a> PostData<'a> { ///Post description pub struct Post { ///ID - pub id: u64, + pub id: String, } #[derive(Deserialize, Debug)]