Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Mar 22, 2021
1 parent 64d5880 commit 67273db
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion src/csharp/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Copyright>Copyright (C) 2018-present iced project and contributors</Copyright>
<Version>1.10.3</Version>
<Version>1.11.0</Version>
<Authors>iced project and contributors &lt;https://github.com/icedland&gt;</Authors>
<InformationalVersion>$(Version)</InformationalVersion>

Expand Down
4 changes: 2 additions & 2 deletions src/rust/iced-x86-fzgt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iced-x86-fzgt"
version = "1.10.3"
version = "1.11.0"
authors = ["iced project and contributors <https://github.com/icedland>"]
license = "MIT"
description = "Test FuzzerGen output"
Expand All @@ -11,5 +11,5 @@ publish = false
structopt = "0.3.15"

[dependencies.iced-x86]
version = "1.10.3"
version = "1.11.0"
path = "../iced-x86"
2 changes: 1 addition & 1 deletion src/rust/iced-x86-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "iced-x86"
# The version number can't be the same as iced-x86's version number or cargo build will fail
version = "1.10.1002"
version = "1.11.1000"
authors = ["iced project and contributors <https://github.com/icedland>"]
license = "MIT"
description = "iced-x86 is a blazing fast and correct x86/x64 disassembler, assembler and instruction decoder written in Rust and compiled to WebAssembly"
Expand Down
4 changes: 2 additions & 2 deletions src/rust/iced-x86-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iced-x86-py"
version = "1.10.3"
version = "1.11.0"
authors = ["iced project and contributors <https://github.com/icedland>"]
edition = "2018"
publish = false
Expand All @@ -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.10.3"
version = "=1.11.0"
# 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:
Expand Down
2 changes: 1 addition & 1 deletion src/rust/iced-x86-py/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = "Copyright (C) 2018-present iced project and contributors"
author = "iced project and contributors <https://github.com/icedland>"
# The full version, including alpha/beta/rc tags
release = "1.10.3"
release = "1.11.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/rust/iced-x86-py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="iced-x86",
version="1.10.3",
version="1.11.0",
license="MIT",
author_email="[email protected]",
author="wtfsck",
Expand Down
2 changes: 1 addition & 1 deletion src/rust/iced-x86/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iced-x86"
version = "1.10.3"
version = "1.11.0"
authors = ["iced project and contributors <https://github.com/icedland>"]
edition = "2018"
license = "MIT"
Expand Down
40 changes: 20 additions & 20 deletions src/rust/iced-x86/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
iced-x86 = "1.10.3"
iced-x86 = "1.11.0"
```

Or to customize which features to use:

```toml
[dependencies.iced-x86]
version = "1.10.3"
version = "1.11.0"
default-features = false
# See below for all features
features = ["std", "decoder", "masm"]
Expand Down Expand Up @@ -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.10.3/iced_x86/struct.BlockEncoder.html
[`OpCodeInfo`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.OpCodeInfo.html
[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.BlockEncoder.html
[`OpCodeInfo`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.OpCodeInfo.html

## How-tos

Expand All @@ -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<TraitOptions>`] (or [`FastFormatter`]).

[`Decoder`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.Decoder.html
[`Formatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/trait.Formatter.html
[`GasFormatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.GasFormatter.html
[`IntelFormatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.IntelFormatter.html
[`MasmFormatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.MasmFormatter.html
[`NasmFormatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.NasmFormatter.html
[`SpecializedFormatter<TraitOptions>`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.SpecializedFormatter.html
[`FastFormatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/type.FastFormatter.html
[`Decoder`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.Decoder.html
[`Formatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/trait.Formatter.html
[`GasFormatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.GasFormatter.html
[`IntelFormatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.IntelFormatter.html
[`MasmFormatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.MasmFormatter.html
[`NasmFormatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.NasmFormatter.html
[`SpecializedFormatter<TraitOptions>`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.SpecializedFormatter.html
[`FastFormatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/type.FastFormatter.html

```rust
use iced_x86::{Decoder, DecoderOptions, Formatter, Instruction, NasmFormatter};
Expand Down Expand Up @@ -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.10.3/iced_x86/struct.BlockEncoder.html
[`Instruction`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.Instruction.html
[`BlockEncoder`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.BlockEncoder.html
[`Instruction`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.Instruction.html

```rust
use iced_x86::{
Expand Down Expand Up @@ -363,8 +363,8 @@ Output:

Creates a custom [`SymbolResolver`] that is called by a [`Formatter`].

[`SymbolResolver`]: https://docs.rs/iced-x86/1.10.3/iced_x86/trait.SymbolResolver.html
[`Formatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/trait.Formatter.html
[`SymbolResolver`]: https://docs.rs/iced-x86/1.11.0/iced_x86/trait.SymbolResolver.html
[`Formatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/trait.Formatter.html

```rust
use iced_x86::{
Expand Down Expand Up @@ -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.10.3/iced_x86/trait.FormatterOutput.html
[`Formatter`]: https://docs.rs/iced-x86/1.10.3/iced_x86/trait.Formatter.html
[`FormatterOutput`]: https://docs.rs/iced-x86/1.11.0/iced_x86/trait.FormatterOutput.html
[`Formatter`]: https://docs.rs/iced-x86/1.11.0/iced_x86/trait.Formatter.html

```rust compile_fail
// This example uses crate colored = "2.0.0"
Expand Down Expand Up @@ -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.10.3/iced_x86/struct.Instruction.html
[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.10.3/iced_x86/struct.InstructionInfoFactory.html
[`Instruction`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.Instruction.html
[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.11.0/iced_x86/struct.InstructionInfoFactory.html

```rust
use iced_x86::{
Expand Down
6 changes: 3 additions & 3 deletions src/rust/iced-x86/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
//!
//! ```toml
//! [dependencies]
//! iced-x86 = "1.10.3"
//! iced-x86 = "1.11.0"
//! ```
//!
//! Or to customize which features to use:
//!
//! ```toml
//! [dependencies.iced-x86]
//! version = "1.10.3"
//! version = "1.11.0"
//! default-features = false
//! # See below for all features
//! features = ["std", "decoder", "masm"]
Expand Down Expand Up @@ -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.10.3")]
#![doc(html_root_url = "https://docs.rs/iced-x86/1.11.0")]
#![allow(unknown_lints)]
#![warn(absolute_paths_not_starting_with_crate)]
#![warn(anonymous_parameters)]
Expand Down

0 comments on commit 67273db

Please sign in to comment.