Skip to content

Commit

Permalink
Merge branch 'release_02'
Browse files Browse the repository at this point in the history
  • Loading branch information
jimon committed Jan 7, 2016
2 parents 805ec3a + d19c06f commit 356310f
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildfox.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
transformer ignore_default_libs: /NODEFAULTLIB:${param}
# main flags
cxxflags =
cxxflags = $cxx_exceptions
ldflags =
libflags =
filter variation:debug
Expand Down
27 changes: 27 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### v0.2

- Fixed library transform for *nix platforms
- Fixed recursive glob expansion with more then 9 groups
- Added OS X tests
- Added IDE generators tests
- Added MSVS2015, Make, CMake and QtCreator project generators
- Added SSE3/SSSE3/SSE4.1 & no exceptions flags
- Added {path} and {file} properties to transforms
- Added filters in nested variables
- Added environment setup command in IDE project generators
- Added path/file flag to target path regex capture groups
- Renamed transform app -> application
- Renamed transform obj -> objects
- Renamed transform lib -> library
- Renamed transform shlib -> shared_library
- Removed transform shlib_dep (please check manual)
- Removed EOL comments (only newline commets are allowed)
- Misc : only allow transforms on whole path and not parts of it
- Misc : auto detection of MSVS version
- Misc : more detailed error reports
- Misc : release as v0.2.1 on PyPi because of a mistake

### v0.1

- Initial version
- Misc : release as v0.1.2 on PyPi because of a mistake
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from setuptools import setup
import sys

version = "0.1.2"
version = "0.2.1"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
Expand Down Expand Up @@ -34,4 +34,5 @@
zip_safe=True,
install_requires=[],
tests_require=["unittest2"],
entry_points={'console_scripts': ['bf=buildfox:main']})
entry_points={'console_scripts': ['bf=buildfox:main']}
)

0 comments on commit 356310f

Please sign in to comment.