Skip to content

Commit

Permalink
chore(release) Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jul 16, 2019
1 parent c05bbfe commit 8aab663
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
publish = false
name = "php-ext-wasm"
version = "0.4.1"
version = "0.5.0"
authors = ["Ivan Enderlin <[email protected]>"]
edition = "2018"
description = "PHP extension to run WebAssembly binaries"
Expand Down
2 changes: 1 addition & 1 deletion src/php_wasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern zend_module_entry wasm_module_entry;
# define phpext_wasm_ptr &wasm_module_entry

# define PHP_WASM_VERSION "0.2.0"
# define PHP_WASM_VERSION "0.5.0"

# if defined(ZTS) && defined(COMPILE_DL_WASM)
ZEND_TSRMLS_CACHE_EXTERN()
Expand Down
2 changes: 1 addition & 1 deletion tests/units/Extension/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public function test_reflection_version()
->when($result = $reflection->getVersion())
->then
->string($result)
->isEqualTo('0.2.0');
->isEqualTo('0.5.0');
}
}

0 comments on commit 8aab663

Please sign in to comment.