Skip to content

Commit

Permalink
update versions in prep for a follow-on release
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhendricks committed Mar 10, 2022
1 parent f2157d4 commit 1513e59
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake_e

set( SIGIL_MAJOR_VERSION 1 )
set( SIGIL_MINOR_VERSION 9 )
set( SIGIL_REVISION_VERSION 1 )
set( SIGIL_REVISION_VERSION 2 )
set( SIGIL_FULL_VERSION ${SIGIL_MAJOR_VERSION}.${SIGIL_MINOR_VERSION}.${SIGIL_REVISION_VERSION} )

if( UNIX AND NOT APPLE )
Expand Down
9 changes: 9 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Sigil-1.9.2
Bug Fixes
- fix loss of highlight on match when searching
- fix incorrect search counts
- fix incomplete replace all
- fix useability issues in Saved Searches
- fix handling or subcapture replacements when no search capture groups are provided
- fix crash on Windows from too fast/repeated Find Net and Find Previous launched via keyboard shortcuts

Sigil-1.9.1
Bug Fixes
- Allow creation of a Windows 7 Legacy Installer to return Sigil to Windows 7 (for now)
Expand Down
4 changes: 2 additions & 2 deletions src/Resource_Files/plugin_launchers/python/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# vim:ts=4:sw=4:softtabstop=4:smarttab:expandtab

# Copyright (c) 2014-2020 Kevin B. Hendricks and Doug Massay
# Copyright (c) 2014-2022 Kevin B. Hendricks and Doug Massay
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
Expand Down Expand Up @@ -49,7 +49,7 @@ def _unicodestr(p):
return p
return p.decode('utf-8', errors='replace')

_launcher_version = 20220302
_launcher_version = 20220310

_PKG_VER = re.compile(r'''<\s*package[^>]*version\s*=\s*["']([^'"]*)['"][^>]*>''', re.IGNORECASE)

Expand Down

0 comments on commit 1513e59

Please sign in to comment.