Tag and release 2.1.1

This commit is contained in:
mio 2024-09-26 18:44:51 +08:00
parent 4fa34d43ef
commit 867770c7ef
No known key found for this signature in database
GPG Key ID: DFF27E34A47CB873
12 changed files with 14 additions and 12 deletions

View File

@ -53,7 +53,7 @@ set(CMAKE_C_STANDARD 11)
set(UNICORN_VERSION_MAJOR 2)
set(UNICORN_VERSION_MINOR 1)
set(UNICORN_VERSION_PATCH 0)
set(UNICORN_VERSION_PATCH 1)
include(cmake/bundle_static.cmake)

View File

@ -1,6 +1,6 @@
[package]
name = "unicorn-engine"
version = "2.1.0"
version = "2.1.1"
authors = ["Ziqiao Kong", "Lukas Seidel"]
documentation = "https://github.com/unicorn-engine/unicorn/wiki"
edition = "2021"

View File

@ -1,7 +1,9 @@
This file details the changelog of Unicorn Engine.
-------------------------------
[Version 2.1.1]: TBD
[Version 2.1.1]: Sept 26th, 2024
This is a small release to fix a few urgent issues.
- Remove pkg_resources usage
- Fix wheels distribution for x86_64 macos

View File

@ -6,7 +6,7 @@
<Copyright>Copyright © Antonio Parata 2016</Copyright>
<RepositoryUrl>https://github.com/unicorn-engine/unicorn</RepositoryUrl>
<PackageDescription>.NET bindings for unicorn</PackageDescription>
<VersionPrefix>2.1.0</VersionPrefix>
<VersionPrefix>2.1.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<ProjectGuid>0c21f1c1-2725-4a46-9022-1905f85822a5</ProjectGuid>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

View File

@ -6,7 +6,7 @@
<AssemblyName>UnicornSamples</AssemblyName>
<Copyright>Copyright © Antonio Parata 2016</Copyright>
<RepositoryUrl>https://github.com/unicorn-engine/unicorn</RepositoryUrl>
<Version>2.1.0</Version>
<Version>2.1.1</Version>
<ProjectGuid>{B80B5987-1E24-4309-8BF9-C4F91270F21C}</ProjectGuid>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>

View File

@ -6,7 +6,7 @@
<groupId>org.unicorn-engine</groupId>
<artifactId>unicorn</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<name>unicorn</name>
<url>https://www.unicorn-engine.org</url>

View File

@ -32,7 +32,7 @@ SRC_DIR = os.path.join(ROOT_DIR, 'src')
UC_DIR = SRC_DIR if os.path.exists(SRC_DIR) else os.path.join(ROOT_DIR, '../..')
BUILD_DIR = os.path.join(UC_DIR, 'build_python')
VERSION = "2.1.0"
VERSION = "2.1.1"
if SYSTEM == 'darwin':
LIBRARY_FILE = "libunicorn.2.dylib"

View File

@ -5,7 +5,7 @@
# Use bundle install && rake to install gem and test
install: gen_const
cd unicorn_gem && rake build
cd unicorn_gem && gem install --local pkg/unicorn-engine-2.1.0.gem
cd unicorn_gem && gem install --local pkg/unicorn-engine-2.1.1.gem
gen_const:
cd .. && python3 const_generator.py ruby

View File

@ -1,3 +1,3 @@
module Unicorn
VERSION = "2.1.0"
VERSION = "2.1.1"
end

View File

@ -32,7 +32,7 @@ Add this to your `Cargo.toml`:
```
[dependencies]
unicorn-engine = "2.1.0"
unicorn-engine = "2.1.1"
```
## Acknowledgements

View File

@ -1,5 +1,5 @@
.{
.name = "unicorn",
.version = "2.1.0",
.version = "2.1.1",
.paths = .{""},
}

View File

@ -72,7 +72,7 @@ typedef size_t uc_hook;
// Unicorn API version
#define UC_API_MAJOR 2
#define UC_API_MINOR 1
#define UC_API_PATCH 0
#define UC_API_PATCH 1
// Release candidate version, 255 means the official release.
#define UC_API_EXTRA 255