Skip to content

Commit

Permalink
prepared the 1.35.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Sep 27, 2017
1 parent 8a47e05 commit daa6570
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* 1.35.0 (2017-XX-XX)
* 1.35.0 (2017-09-27)

* added Twig_Profiler_Profile::reset()
* fixed use TokenParser to return an empty Node
Expand Down
2 changes: 1 addition & 1 deletion ext/twig/php_twig.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H

#define PHP_TWIG_VERSION "1.35.0-DEV"
#define PHP_TWIG_VERSION "1.35.0"

#include "php.h"

Expand Down
4 changes: 2 additions & 2 deletions lib/Twig/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
*/
class Twig_Environment
{
const VERSION = '1.35.0-DEV';
const VERSION = '1.35.0';
const VERSION_ID = 13500;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 35;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

protected $charset;
protected $loader;
Expand Down

0 comments on commit daa6570

Please sign in to comment.