From 6661f795ba945ab8f29dfbde24e7a27f635607ef Mon Sep 17 00:00:00 2001 From: wtfsck Date: Thu, 13 May 2021 22:56:24 +0200 Subject: [PATCH] Bump version --- build/npm-fix-json.py | 2 +- src/csharp/Directory.Build.props | 2 +- src/rust/iced-x86-py/Cargo.toml | 4 ++-- src/rust/iced-x86-py/docs/conf.py | 2 +- src/rust/iced-x86-py/setup.py | 2 +- src/rust/iced-x86/Cargo.toml | 2 +- src/rust/iced-x86/README.md | 40 +++++++++++++++---------------- src/rust/iced-x86/src/lib.rs | 6 ++--- 8 files changed, 30 insertions(+), 30 deletions(-) diff --git a/build/npm-fix-json.py b/build/npm-fix-json.py index ea9248dc0..508f2ca32 100644 --- a/build/npm-fix-json.py +++ b/build/npm-fix-json.py @@ -1,7 +1,7 @@ import sys import json -iced_version = "1.11.2" +iced_version = "1.11.3" if len(sys.argv) != 3: raise ValueError(f"usage {sys.argv[0]} npm_package_json test_package_json") diff --git a/src/csharp/Directory.Build.props b/src/csharp/Directory.Build.props index 9563e80d6..0150d5364 100644 --- a/src/csharp/Directory.Build.props +++ b/src/csharp/Directory.Build.props @@ -2,7 +2,7 @@ Copyright (C) 2018-present iced project and contributors - 1.11.2 + 1.11.3 iced project and contributors <https://github.com/icedland> $(Version) diff --git a/src/rust/iced-x86-py/Cargo.toml b/src/rust/iced-x86-py/Cargo.toml index d2d8c1014..ec0d840bc 100644 --- a/src/rust/iced-x86-py/Cargo.toml +++ b/src/rust/iced-x86-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced-x86-py" -version = "1.11.2" +version = "1.11.3" authors = ["iced project and contributors "] edition = "2018" publish = false @@ -19,7 +19,7 @@ features = ["macros", "extension-module", "abi3-py36"] [dependencies.iced-x86] # If building from sdist, it should use the exact same version as the sdist. -version = "=1.11.2" +version = "=1.11.3" # To use ../iced-x86 source code, add this to your $HOME/.cargo/config.toml # paths = ["/abs/path/to/iced/src/rust/iced-x86"] # or uncomment this line: diff --git a/src/rust/iced-x86-py/docs/conf.py b/src/rust/iced-x86-py/docs/conf.py index bb00730b6..8cacfbf34 100644 --- a/src/rust/iced-x86-py/docs/conf.py +++ b/src/rust/iced-x86-py/docs/conf.py @@ -21,7 +21,7 @@ copyright = "Copyright (C) 2018-present iced project and contributors" author = "iced project and contributors " # The full version, including alpha/beta/rc tags -release = "1.11.2" +release = "1.11.3" # -- General configuration --------------------------------------------------- diff --git a/src/rust/iced-x86-py/setup.py b/src/rust/iced-x86-py/setup.py index 27a206218..63797ac40 100644 --- a/src/rust/iced-x86-py/setup.py +++ b/src/rust/iced-x86-py/setup.py @@ -24,7 +24,7 @@ setup( name="iced-x86", - version="1.11.2", + version="1.11.3", license="MIT", author_email="wtfsck@protonmail.com", author="wtfsck", diff --git a/src/rust/iced-x86/Cargo.toml b/src/rust/iced-x86/Cargo.toml index 68b9baa8d..f12a75173 100644 --- a/src/rust/iced-x86/Cargo.toml +++ b/src/rust/iced-x86/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced-x86" -version = "1.11.2" +version = "1.11.3" authors = ["iced project and contributors "] edition = "2018" license = "MIT" diff --git a/src/rust/iced-x86/README.md b/src/rust/iced-x86/README.md index 5f81ce3a1..fa0e6115e 100644 --- a/src/rust/iced-x86/README.md +++ b/src/rust/iced-x86/README.md @@ -25,14 +25,14 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -iced-x86 = "1.11.2" +iced-x86 = "1.11.3" ``` Or to customize which features to use: ```toml [dependencies.iced-x86] -version = "1.11.2" +version = "1.11.3" default-features = false # See below for all features features = ["std", "decoder", "masm"] @@ -63,8 +63,8 @@ You can enable/disable these in your `Cargo.toml` file. If you use `no_vex`, `no_evex`, `no_xop` or `no_d3now`, you should run the generator again (before building iced) to generate even smaller output. -[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.BlockEncoder.html -[`OpCodeInfo`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.OpCodeInfo.html +[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.BlockEncoder.html +[`OpCodeInfo`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.OpCodeInfo.html ## How-tos @@ -83,14 +83,14 @@ If you use `no_vex`, `no_evex`, `no_xop` or `no_d3now`, you should run the gener This example uses a [`Decoder`] and one of the [`Formatter`]s to decode and format the code, eg. [`GasFormatter`], [`IntelFormatter`], [`MasmFormatter`], [`NasmFormatter`], [`SpecializedFormatter`] (or [`FastFormatter`]). -[`Decoder`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.Decoder.html -[`Formatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/trait.Formatter.html -[`GasFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.GasFormatter.html -[`IntelFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.IntelFormatter.html -[`MasmFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.MasmFormatter.html -[`NasmFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.NasmFormatter.html -[`SpecializedFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.SpecializedFormatter.html -[`FastFormatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/type.FastFormatter.html +[`Decoder`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.Decoder.html +[`Formatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/trait.Formatter.html +[`GasFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.GasFormatter.html +[`IntelFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.IntelFormatter.html +[`MasmFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.MasmFormatter.html +[`NasmFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.NasmFormatter.html +[`SpecializedFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.SpecializedFormatter.html +[`FastFormatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/type.FastFormatter.html ```rust use iced_x86::{Decoder, DecoderOptions, Formatter, Instruction, NasmFormatter}; @@ -228,8 +228,8 @@ opt-level = 3 This example uses a [`BlockEncoder`] to encode created [`Instruction`]s. This example needs the `db` feature because it creates `db` "instructions". -[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.BlockEncoder.html -[`Instruction`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.Instruction.html +[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.BlockEncoder.html +[`Instruction`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.Instruction.html ```rust use iced_x86::{ @@ -363,8 +363,8 @@ Output: Creates a custom [`SymbolResolver`] that is called by a [`Formatter`]. -[`SymbolResolver`]: https://docs.rs/iced-x86/1.11.2/iced_x86/trait.SymbolResolver.html -[`Formatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/trait.Formatter.html +[`SymbolResolver`]: https://docs.rs/iced-x86/1.11.3/iced_x86/trait.SymbolResolver.html +[`Formatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/trait.Formatter.html ```rust use iced_x86::{ @@ -420,8 +420,8 @@ Creates a custom [`FormatterOutput`] that is called by a [`Formatter`]. This example will fail to compile unless you install the `colored` crate, see below. -[`FormatterOutput`]: https://docs.rs/iced-x86/1.11.2/iced_x86/trait.FormatterOutput.html -[`Formatter`]: https://docs.rs/iced-x86/1.11.2/iced_x86/trait.Formatter.html +[`FormatterOutput`]: https://docs.rs/iced-x86/1.11.3/iced_x86/trait.FormatterOutput.html +[`Formatter`]: https://docs.rs/iced-x86/1.11.3/iced_x86/trait.Formatter.html ```rust compile_fail // This example uses crate colored = "2.0.0" @@ -684,8 +684,8 @@ static EXAMPLE_CODE: &[u8] = &[ Shows how to get used registers/memory and other info. It uses [`Instruction`] methods and an [`InstructionInfoFactory`] to get this info. -[`Instruction`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.Instruction.html -[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.11.2/iced_x86/struct.InstructionInfoFactory.html +[`Instruction`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.Instruction.html +[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.11.3/iced_x86/struct.InstructionInfoFactory.html ```rust use iced_x86::{ diff --git a/src/rust/iced-x86/src/lib.rs b/src/rust/iced-x86/src/lib.rs index 53210aee0..b666d0d44 100644 --- a/src/rust/iced-x86/src/lib.rs +++ b/src/rust/iced-x86/src/lib.rs @@ -28,14 +28,14 @@ //! //! ```toml //! [dependencies] -//! iced-x86 = "1.11.2" +//! iced-x86 = "1.11.3" //! ``` //! //! Or to customize which features to use: //! //! ```toml //! [dependencies.iced-x86] -//! version = "1.11.2" +//! version = "1.11.3" //! default-features = false //! # See below for all features //! features = ["std", "decoder", "masm"] @@ -1175,7 +1175,7 @@ //! Bumping the minimum supported version of `rustc` is considered a minor breaking change. The minor version of iced-x86 will be incremented. #![doc(html_logo_url = "https://raw.githubusercontent.com/icedland/iced/master/logo.png")] -#![doc(html_root_url = "https://docs.rs/iced-x86/1.11.2")] +#![doc(html_root_url = "https://docs.rs/iced-x86/1.11.3")] #![allow(unknown_lints)] #![warn(absolute_paths_not_starting_with_crate)] #![warn(anonymous_parameters)]