Skip to content

Commit

Permalink
Increase version to 2.0.3, update NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Jul 23, 2017
1 parent 4c3ca11 commit fb2bd41
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ deploy:
api_key:
secure: fkelxNMcGoNY4MT30dEiEUE53cMkhtmr44Y7iSEkOGmfeG9ReUqVIk1nd7027iehzdhhcov57XwHg49KA+AWpQGvEbLkRNRazOxSGFL9o/P/Rzft/tvKP0sxcRF5RUVo0b5J5wlsIKSlbjDqGu9CM+G4eyK0D2jo/XPzsv9akKQ=
skip_cleanup: true
file: poedit-2.0.2.tar.gz
file: poedit-2.0.3.tar.gz
on:
repo: vslavik/poedit
tags: true
Expand Down
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

Version 2.0.3
-------------

- Much faster loading and saving of large PO files.
- Fixed frequent false positives in QA warnings for German, Japanese, Arabic
and translations with reordered brackets.
- Fixed issues with suggestions not showing up in the sidebar if the user had
an unusually tall editing area set up.
- Fixed assert when opening a PO file on Linux.


Version 2.0.2
-------------

Expand Down
4 changes: 2 additions & 2 deletions Poedit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,7 @@
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "-fvisibility=hidden";
POEDIT_FEATURES = "";
POEDIT_VERSION = 2.0.2;
POEDIT_VERSION = 2.0.3;
SDKROOT = macosx;
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
};
Expand Down Expand Up @@ -1729,7 +1729,7 @@
LIBRARY_SEARCH_PATHS = "$(DEPS_BUILD_DIR)/icu/lib";
MACOSX_DEPLOYMENT_TARGET = 10.10;
POEDIT_FEATURES = "";
POEDIT_VERSION = 2.0.2;
POEDIT_VERSION = 2.0.3;
SDKROOT = macosx;
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
};
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)

AC_INIT([poedit], [2.0.2], [[email protected]])
PACKAGE_SHORT_VERSION=2.0.2
AC_INIT([poedit], [2.0.3], [[email protected]])
PACKAGE_SHORT_VERSION=2.0.3
AC_SUBST(PACKAGE_SHORT_VERSION)

AC_CONFIG_AUX_DIR([admin])
Expand Down
2 changes: 1 addition & 1 deletion scripts/refresh-pot.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh -e

PACKAGE_SHORT_VERSION=2.0.2
PACKAGE_SHORT_VERSION=2.0.3

[ -n "${WXRC}" ] || WXRC=wxrc

Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#ifndef _VERSION_H_
#define _VERSION_H_

#define POEDIT_VERSION "2.0.2"
#define POEDIT_VERSION_SHORT "2.0.2"
#define POEDIT_VERSION_WIN 2,0,2
#define POEDIT_VERSION "2.0.3"
#define POEDIT_VERSION_SHORT "2.0.3"
#define POEDIT_VERSION_WIN 2,0,3

#endif // _VERSION_H_
4 changes: 2 additions & 2 deletions win32/poedit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

#include "../" + CONFIG + "/git_build_number.h"

#define VERSION "2.0.2"
#define VERSION_FULL "2.0.2"
#define VERSION "2.0.3"
#define VERSION_FULL "2.0.3"
#define VERSION_WIN VERSION + "." + Str(POEDIT_GIT_BUILD_NUMBER)

#ifndef CRT_REDIST
Expand Down
2 changes: 1 addition & 1 deletion win32/version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PoeditVersion>2.0.2</PoeditVersion>
<PoeditVersion>2.0.3</PoeditVersion>
</PropertyGroup>
</Project>

0 comments on commit fb2bd41

Please sign in to comment.