Skip to content

Commit

Permalink
prepared the 1.32.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Feb 27, 2017
1 parent 48e17f7 commit 9935b66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
@@ -1,4 +1,4 @@
* 1.32.0 (2017-XX-XX)
* 1.32.0 (2017-02-26)

* fixed deprecation notice in Twig_Util_DeprecationCollector
* added a PSR-11 compatible runtime loader
Expand Down
2 changes: 1 addition & 1 deletion ext/twig/php_twig.h
Expand Up @@ -15,7 +15,7 @@
#ifndef PHP_TWIG_H
#define PHP_TWIG_H

#define PHP_TWIG_VERSION "1.32.0-DEV"
#define PHP_TWIG_VERSION "1.32.0"

#include "php.h"

Expand Down
4 changes: 2 additions & 2 deletions lib/Twig/Environment.php
Expand Up @@ -16,12 +16,12 @@
*/
class Twig_Environment
{
const VERSION = '1.32.0-DEV';
const VERSION = '1.32.0';
const VERSION_ID = 13200;
const MAJOR_VERSION = 1;
const MINOR_VERSION = 32;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

protected $charset;
protected $loader;
Expand Down

0 comments on commit 9935b66

Please sign in to comment.