Fix outdated version
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -10,8 +10,11 @@
|
|||||||
*.dll
|
*.dll
|
||||||
*.class
|
*.class
|
||||||
*.jar
|
*.jar
|
||||||
|
*.gem
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
qemu/*-softmmu/
|
||||||
|
|
||||||
tags
|
tags
|
||||||
qemu/config-host.ld
|
qemu/config-host.ld
|
||||||
qemu/config.log
|
qemu/config.log
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ for _path in _path_list:
|
|||||||
else:
|
else:
|
||||||
raise ImportError("ERROR: fail to load the dynamic library.")
|
raise ImportError("ERROR: fail to load the dynamic library.")
|
||||||
|
|
||||||
__version__ = "%u.%u.%u" % (uc.UC_VERSION_MAJOR, uc.UC_VERSION_MINOR, uc.UC_VERSION_EXTRA)
|
__version__ = "%u.%u.%u" % (uc.UC_VERSION_MAJOR, uc.UC_VERSION_MINOR, uc.UC_VERSION_PATCH)
|
||||||
|
|
||||||
# setup all the function prototype
|
# setup all the function prototype
|
||||||
def _setup_prototype(lib, fname, restype, *argtypes):
|
def _setup_prototype(lib, fname, restype, *argtypes):
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
# Use bundle install && rake to install gem and test
|
# Use bundle install && rake to install gem and test
|
||||||
install: gen_const
|
install: gen_const
|
||||||
cd unicorn_gem && rake build
|
cd unicorn_gem && rake build
|
||||||
cd unicorn_gem && gem install --local pkg/unicorn-engine-1.0.1.gem
|
cd unicorn_gem && gem install --local pkg/unicorn-engine-2.0.0.gem
|
||||||
|
|
||||||
gen_const:
|
gen_const:
|
||||||
cd .. && python3 const_generator.py ruby
|
cd .. && python3 const_generator.py ruby
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
module Unicorn
|
module Unicorn
|
||||||
VERSION = "1.0.1"
|
VERSION = "2.0.0"
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ Add this to your `Cargo.toml`:
|
|||||||
|
|
||||||
```
|
```
|
||||||
[dependencies]
|
[dependencies]
|
||||||
unicorn-engine = "2.0.0-rc3"
|
unicorn-engine = "2.0.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Acknowledgements
|
## Acknowledgements
|
||||||
|
|||||||
Reference in New Issue
Block a user