Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
Version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hjagodzinski committed Jul 18, 2016
1 parent 22b0ff5 commit afe809b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions php_protobuf.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#define PROTOBUF_PHP_PHP_PROTOBUF_H

#ifdef HAVE_CONFIG_H
# include "config.h"
#include "config.h"
#endif

#define PHP_PROTOBUF_VERSION "0.9"
#define PHP_PROTOBUF_VERSION "0.11.0"
#define PHP_PROTOBUF_EXTNAME "protobuf"

extern zend_module_entry protobuf_module_entry;
Expand Down
3 changes: 2 additions & 1 deletion src/Allegro/Protobuf/Compiler/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
class Compiler
{
const MINIMUM_PROTOC_VERSION = '2.6.0';
const VERSION = '0.11.0';

/**
* @param string $pluginExecutable
Expand Down Expand Up @@ -66,7 +67,7 @@ private function hasStdin()
*/
private function parseArguments()
{
$parser = new \Console_CommandLine();
$parser = new \Console_CommandLine(array('version' => self::VERSION));

$parser->addOption('out', array(
'short_name' => '-o',
Expand Down

0 comments on commit afe809b

Please sign in to comment.