Skip to content

Commit

Permalink
Version 1.1.8, Release Candidate 0
Browse files Browse the repository at this point in the history
  • Loading branch information
evanmiller committed Feb 21, 2022
1 parent 1e0ca4d commit 2d34a9c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
New in 1.1.8:

* XPT reader/writer: Improved support for format strings #257 #258
* SAV/DTA writers: Improved checking of non-ASCII characters #256
* Build: Link to libm on GNU systems #255
* SAS commands: Support more syntax
* SPSS commands: Make file names optional

New in 1.1.7:

* SAV writer: Permit missing ranges for integer variables #251
Expand Down
2 changes: 1 addition & 1 deletion VS17/PropertySheet.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup />
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions>READSTAT_VERSION="1.1.7";_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>READSTAT_VERSION="1.1.8-rc0";_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup />
Expand Down
7 changes: 4 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Update this with each release. Be sure to change VS17/PropertySheet.props too
AC_INIT([ReadStat], [1.1.7], [https://github.com/WizardMac/ReadStat/issues], [readstat], [https://github.com/WizardMac/ReadStat])
AC_INIT([ReadStat],[1.1.8-rc0],[https://github.com/WizardMac/ReadStat/issues],[readstat],[https://github.com/WizardMac/ReadStat])
AM_INIT_AUTOMAKE([foreign subdir-objects])
AM_SILENT_RULES([yes])

# Don't forget to update these too
READSTAT_MAJOR_VERSION=1
READSTAT_MINOR_VERSION=1
READSTAT_MICRO_VERSION=7
READSTAT_MICRO_VERSION=8

# libtool stuff, see https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
READSTAT_VERSION=$READSTAT_MAJOR_VERSION.$READSTAT_MINOR_VERSION.$READSTAT_MICRO_VERSION
Expand Down Expand Up @@ -78,7 +78,8 @@ AM_CONDITIONAL([HAVE_ZLIB], test "$ac_cv_lib_z_deflate" = yes)

AM_CONDITIONAL([CODE_COVERAGE_ENABLED], test "x$code_coverage" = "xyes")

AC_OUTPUT([Makefile])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

AC_MSG_RESULT([
Configuration:
Expand Down

0 comments on commit 2d34a9c

Please sign in to comment.