mirror of https://github.com/icedland/iced.git
Bump version
This commit is contained in:
parent
5fb3efe16e
commit
1fe8123994
|
@ -1,7 +1,7 @@
|
|||
import sys
|
||||
import json
|
||||
|
||||
iced_version = "1.13.0"
|
||||
iced_version = "1.14.0"
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
raise ValueError(f"usage {sys.argv[0]} npm_package_json test_package_json")
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<Copyright>Copyright (C) 2018-present iced project and contributors</Copyright>
|
||||
<Version>1.13.0</Version>
|
||||
<Version>1.14.0</Version>
|
||||
<Authors>iced project and contributors <https://github.com/icedland></Authors>
|
||||
<InformationalVersion>$(Version)</InformationalVersion>
|
||||
|
||||
|
|
|
@ -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.13.1000"
|
||||
version = "1.14.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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "iced-x86-py"
|
||||
version = "1.13.0"
|
||||
version = "1.14.0"
|
||||
authors = ["iced project and contributors <https://github.com/icedland>"]
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
@ -20,7 +20,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.13.0"
|
||||
version = "=1.14.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:
|
||||
|
|
|
@ -21,7 +21,7 @@ project = "iced-x86"
|
|||
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.13.0"
|
||||
release = "1.14.0"
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -24,7 +24,7 @@ py_limited_api = any(arg == "--py-limited-api" or arg.startswith("--py-limited-a
|
|||
|
||||
setup(
|
||||
name="iced-x86",
|
||||
version="1.13.0",
|
||||
version="1.14.0",
|
||||
license="MIT",
|
||||
author_email="wtfsck@protonmail.com",
|
||||
author="wtfsck",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "iced-x86"
|
||||
version = "1.13.0"
|
||||
version = "1.14.0"
|
||||
authors = ["iced project and contributors <https://github.com/icedland>"]
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
|
|
|
@ -26,14 +26,14 @@ Add this to your `Cargo.toml`:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
iced-x86 = "1.13.0"
|
||||
iced-x86 = "1.14.0"
|
||||
```
|
||||
|
||||
Or to customize which features to use:
|
||||
|
||||
```toml
|
||||
[dependencies.iced-x86]
|
||||
version = "1.13.0"
|
||||
version = "1.14.0"
|
||||
default-features = false
|
||||
# See below for all features
|
||||
features = ["std", "decoder", "masm"]
|
||||
|
@ -63,10 +63,10 @@ You can enable/disable these in your `Cargo.toml` file.
|
|||
- `no_xop`: Disables all `XOP` instructions
|
||||
- `no_d3now`: Disables all `3DNow!` instructions
|
||||
|
||||
[`BlockEncoder`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.BlockEncoder.html
|
||||
[`CodeAssembler`]: https://docs.rs/iced-x86/1.13.0/iced_x86/code_asm/struct.CodeAssembler.html
|
||||
[`Instruction`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.Instruction.html
|
||||
[`OpCodeInfo`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.OpCodeInfo.html
|
||||
[`BlockEncoder`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.BlockEncoder.html
|
||||
[`CodeAssembler`]: https://docs.rs/iced-x86/1.14.0/iced_x86/code_asm/struct.CodeAssembler.html
|
||||
[`Instruction`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.Instruction.html
|
||||
[`OpCodeInfo`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.OpCodeInfo.html
|
||||
|
||||
## How-tos
|
||||
|
||||
|
@ -86,14 +86,14 @@ You can enable/disable these in your `Cargo.toml` file.
|
|||
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.13.0/iced_x86/struct.Decoder.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/trait.Formatter.html
|
||||
[`GasFormatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.GasFormatter.html
|
||||
[`IntelFormatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.IntelFormatter.html
|
||||
[`MasmFormatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.MasmFormatter.html
|
||||
[`NasmFormatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.NasmFormatter.html
|
||||
[`SpecializedFormatter<TraitOptions>`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.SpecializedFormatter.html
|
||||
[`FastFormatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/type.FastFormatter.html
|
||||
[`Decoder`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.Decoder.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/trait.Formatter.html
|
||||
[`GasFormatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.GasFormatter.html
|
||||
[`IntelFormatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.IntelFormatter.html
|
||||
[`MasmFormatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.MasmFormatter.html
|
||||
[`NasmFormatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.NasmFormatter.html
|
||||
[`SpecializedFormatter<TraitOptions>`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.SpecializedFormatter.html
|
||||
[`FastFormatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/type.FastFormatter.html
|
||||
|
||||
```rust
|
||||
use iced_x86::{Decoder, DecoderOptions, Formatter, Instruction, NasmFormatter};
|
||||
|
@ -185,7 +185,7 @@ This requires the `code_asm` feature to use (not enabled by default). Add it to
|
|||
|
||||
```toml
|
||||
[dependencies.iced-x86]
|
||||
version = "1.13.0"
|
||||
version = "1.14.0"
|
||||
features = ["code_asm"]
|
||||
```
|
||||
|
||||
|
@ -271,8 +271,8 @@ pub(crate) fn how_to_use_code_assembler() -> Result<(), IcedError> {
|
|||
|
||||
Creates a custom [`SymbolResolver`] that is called by a [`Formatter`].
|
||||
|
||||
[`SymbolResolver`]: https://docs.rs/iced-x86/1.13.0/iced_x86/trait.SymbolResolver.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/trait.Formatter.html
|
||||
[`SymbolResolver`]: https://docs.rs/iced-x86/1.14.0/iced_x86/trait.SymbolResolver.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/trait.Formatter.html
|
||||
|
||||
```rust
|
||||
use iced_x86::{
|
||||
|
@ -329,8 +329,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.13.0/iced_x86/trait.FormatterOutput.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.13.0/iced_x86/trait.Formatter.html
|
||||
[`FormatterOutput`]: https://docs.rs/iced-x86/1.14.0/iced_x86/trait.FormatterOutput.html
|
||||
[`Formatter`]: https://docs.rs/iced-x86/1.14.0/iced_x86/trait.Formatter.html
|
||||
|
||||
```rust compile_fail
|
||||
// This example uses crate colored = "2.0.0"
|
||||
|
@ -602,8 +602,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.13.0/iced_x86/struct.Instruction.html
|
||||
[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.InstructionInfoFactory.html
|
||||
[`Instruction`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.Instruction.html
|
||||
[`InstructionInfoFactory`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.InstructionInfoFactory.html
|
||||
|
||||
```rust
|
||||
use iced_x86::{
|
||||
|
@ -1149,9 +1149,9 @@ This example shows how to create instructions without using it.
|
|||
|
||||
This example uses a [`BlockEncoder`] to encode created [`Instruction`]s.
|
||||
|
||||
[`BlockEncoder`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.BlockEncoder.html
|
||||
[`CodeAssembler`]: https://docs.rs/iced-x86/1.13.0/iced_x86/code_asm/struct.CodeAssembler.html
|
||||
[`Instruction`]: https://docs.rs/iced-x86/1.13.0/iced_x86/struct.Instruction.html
|
||||
[`BlockEncoder`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.BlockEncoder.html
|
||||
[`CodeAssembler`]: https://docs.rs/iced-x86/1.14.0/iced_x86/code_asm/struct.CodeAssembler.html
|
||||
[`Instruction`]: https://docs.rs/iced-x86/1.14.0/iced_x86/struct.Instruction.html
|
||||
|
||||
```rust
|
||||
use iced_x86::{
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//!
|
||||
//! ```toml
|
||||
//! [dependencies.iced-x86]
|
||||
//! version = "1.13.0"
|
||||
//! version = "1.14.0"
|
||||
//! features = ["code_asm"]
|
||||
//! ```
|
||||
//!
|
||||
|
@ -58,7 +58,7 @@ impl CodeAssemblerOptions {
|
|||
///
|
||||
/// ```toml
|
||||
/// [dependencies.iced-x86]
|
||||
/// version = "1.13.0"
|
||||
/// version = "1.14.0"
|
||||
/// features = ["code_asm"]
|
||||
/// ```
|
||||
///
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#![cfg_attr(doc, cfg_attr(doc, doc = include_str!("../README.md")))]
|
||||
#![cfg_attr(not(doc), doc = "Run cargo doc to see the docs (needs Rust 1.54.0 or later)")]
|
||||
#![doc(html_logo_url = "https://raw.githubusercontent.com/icedland/iced/master/logo.png")]
|
||||
#![doc(html_root_url = "https://docs.rs/iced-x86/1.13.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/iced-x86/1.14.0")]
|
||||
#![allow(unknown_lints)]
|
||||
#![warn(absolute_paths_not_starting_with_crate)]
|
||||
#![warn(anonymous_parameters)]
|
||||
|
|
Loading…
Reference in New Issue