Skip to content

Commit

Permalink
Updated version number to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jsummers committed Oct 19, 2018
1 parent 9527fe9 commit 17eff70
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ImageWorsener v1.2.0+ is distributed under an MIT-style license.

Copyright (c) 2011-2017 Jason Summers
Copyright (c) 2011-2018 Jason Summers
<[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libimageworsener_la_SOURCES=src/imagew-main.c \
src/imagew-pnm.c \
src/imagew-util.c
libimageworsener_la_LIBADD=-lm
libimageworsener_la_LDFLAGS=-release 1.3.2
libimageworsener_la_LDFLAGS=-release 1.3.3
bin_PROGRAMS=imagew
imagew_SOURCES=src/imagew-cmd.c
imagew_LDADD=libimageworsener.la
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.3.3 - 19 Oct 2018
- Security and stability fixes

Version 1.3.2 - 25 May 2017
- Security and stability fixes

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

dnl TODO: Figure out the actual minimum version that will work.
AC_PREREQ([2.63])
AC_INIT([imageworsener], [1.3.2])
AC_INIT([imageworsener], [1.3.3])
dnl AC_CONFIG_SRCDIR is just any unique file: a sanity check
AC_CONFIG_SRCDIR([src/imagew.h])
AM_CONFIG_HEADER([config.h])
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ImageWorsener is a raster image scaling and processing utility.
Version 1.3.2
Copyright (c) 2011-2017 Jason Summers <[email protected]>
Version 1.3.3
Copyright (c) 2011-2018 Jason Summers <[email protected]>

Web site: http://entropymine.com/imageworsener/

Expand Down
2 changes: 1 addition & 1 deletion scripts/makerelease-win.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.3.2
VERSION=1.3.3
WINDOWS_DOCS='readme.txt technical.txt COPYING.txt'

if [ ! -f technical.txt ]
Expand Down
2 changes: 1 addition & 1 deletion scripts/makerelease.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.3.2
VERSION=1.3.3

if [ ! -f technical.txt ]
then
Expand Down
2 changes: 1 addition & 1 deletion src/imagew-internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define IW_INCLUDE_UTIL_FUNCTIONS
#include "imagew.h"

#define IW_COPYRIGHT_YEAR "2011" "\xe2\x80\x93" "2017"
#define IW_COPYRIGHT_YEAR "2011" "\xe2\x80\x93" "2018"

#ifdef IW_WINDOWS
#define IW_INLINE __inline
Expand Down
2 changes: 1 addition & 1 deletion src/imagew.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extern "C" {

// The version of the IW header files.
// Use iw_get_version_int() to get the version at runtime.
#define IW_VERSION_INT 0x010302
#define IW_VERSION_INT 0x010303


//// Codes for use with iw_get_value/iw_set_value.
Expand Down
10 changes: 5 additions & 5 deletions src/imagew.rc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
IWICON ICON "resources/imagew.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,2,1
PRODUCTVERSION 1,3,2,1
FILEVERSION 1,3,3,1
PRODUCTVERSION 1,3,3,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -32,14 +32,14 @@ BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", "Jason Summers\0"
VALUE "FileDescription", "ImageWorsener\0"
VALUE "FileVersion", "1, 3, 2, 1\0"
VALUE "FileVersion", "1, 3, 3, 1\0"
VALUE "InternalName", "imagew\0"
VALUE "LegalCopyright", "Copyright (c) 2011-2017 Jason Summers\0"
VALUE "LegalCopyright", "Copyright (c) 2011-2018 Jason Summers\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "imagew.exe\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "ImageWorsener\0"
VALUE "ProductVersion", "1, 3, 2, 1\0"
VALUE "ProductVersion", "1, 3, 3, 1\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down

0 comments on commit 17eff70

Please sign in to comment.