Skip to content

Commit

Permalink
Bumping version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswsinc committed May 10, 2015
1 parent 13ffff9 commit 77a56cd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
27 changes: 15 additions & 12 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,17 @@
</if>
<if>
<and>
<available resource="${_src_dir}" type="dir" />
<available resource="${project.basedir}" type="dir" />
</and>
<then>
<echo msg="Replacing tokens in: ${_src_dir} ..." />
<echo msg="Replacing tokens in: ${project.basedir} ..." />
<reflexive>
<fileset dir="${_src_dir}">
<exclude pattern="vendor/**" />
<include pattern="**.php" />
<include pattern="**.scss" />
<include pattern="**.css" />
<include pattern="**.js" />
<fileset dir="${project.basedir}">
<exclude pattern="src/vendor/**" />
<include pattern="*.php" />
<include pattern="**/*.php" />
<include pattern="*.js" />
<include pattern="**/*.js" />
</fileset>
<filterchain>
<replaceregexp>
Expand Down Expand Up @@ -254,14 +254,17 @@
<fileset dir="${_src_dir}">
<exclude name="**/.git**" />
<exclude name="**/build.xml" />
<exclude name="**/composer.json" />
<exclude name="**/composer.lock" />
<exclude name="**/composer.*" />
<exclude name="**/LICENSE.txt" />
<exclude name="**/README.md" />
<exclude name="**/readme.txt" />
<exclude name="**/CHANGELOG.md" />
<exclude name="**/.htaccess" />
<exclude name="**/phar-stub.php" />
<exclude name="vendor/bin/**" />
<exclude name="**/vendor/bin/**" />
<exclude name="**/phar-stub.php" />
<exclude name=".htaccess" />
<exclude name="**/.htaccess" />
<exclude name=".~**" />
<exclude name="**/.~**" />
</fileset>
</pharpackage>
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/includes/classes/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Core // Heart of the HTML Compressor.
*
* @type string Dated version string: `YYMMDD`.
*/
protected $version = '150426'; //version//
protected $version = '150510'; //version//

/**
* An array of class options.
Expand Down

0 comments on commit 77a56cd

Please sign in to comment.