Skip to content

Commit

Permalink
Release 1.2 - News and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryMiller1 committed Oct 12, 2018
1 parent 6f6db88 commit e3d10a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
1.2 (in progress)

1.2
- Add more compiler flags to the list that mean build locally
* -pedantic (preprocessing only)
* -pedantic-errors (preprocessing only)
* -fsyntax-only
- don't force local compile on -include-pch
- Make load calculation better
- Limit amount of data sent at one time for slow networks/remotes
- Many updates to the tests
- Better logs of some error conditions
- Build locally if it is likely that there will not be more compiles
- Support adding gcc and clang to the same environment
- Better handling of icerun
- Cygwin now works as a client
- Don't expose Host endianness to network
- General code cleanup

1.1
- revert "Add load control for preprocessing"
- better handle clang arugments with spaces
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ AC_PREREQ([2.63])
# Development versions: x.y.90
# Pre-release versions: x.y.z, where z = 90 + X in rcX (1.1rc1 = 1.1.91)
m4_define([icecream_version_major],[1])
m4_define([icecream_version_minor],[1])
m4_define([icecream_version_micro],[90])
m4_define([icecream_version_minor],[2])
m4_define([icecream_version_micro],[0])
m4_ifval([icecream_version_micro],
[m4_define([icecream_version],[icecream_version_major.icecream_version_minor.icecream_version_micro])],
[m4_define([icecream_version],[icecream_version_major.icecream_version_minor])])
Expand Down

0 comments on commit e3d10a3

Please sign in to comment.