We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4235dc commit 382db5aCopy full SHA for 382db5a
3 files changed
CHANGELOG.md
@@ -1,2 +1,3 @@
1
-# node-php x.x.x (not yet released)
2
-* Initial release
+# node-php 0.0.1 (2015-10-10)
+* Initial release: just a basic async invocation of a PHP request,
3
+ with streaming back to node.
package.json
@@ -1,7 +1,7 @@
{
"name": "php-embed",
"description": "Bidirectional interoperability between PHP and Node.js",
4
- "version": "0.0.0-git",
+ "version": "0.0.1",
5
"homepage": "http://github.com/cscott/node-php-embed",
6
"author": "C. Scott Ananian <cscott@cscott.net>",
7
"main": "lib/index",
src/node_php_embed.h
@@ -2,7 +2,7 @@
#define NODE_PHP_EMBED_H
#include <nan.h>
-#define NODE_PHP_EMBED_VERSION "0.0.0"
+#define NODE_PHP_EMBED_VERSION "0.0.1"
namespace node_php_embed {
8
class PhpRequestWorker;
0 commit comments