aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-07-03 10:19:45 +1000
committerNeil <nyamatongwe@gmail.com>2021-07-03 10:19:45 +1000
commit4a34a1f59a443403844c437d6d6a61c7a8019822 (patch)
treedf7741a4a68fe9d2f11328b2c3ac23406a8c893a
parentc15fc57b0be7d5a81b8e67a943a4db8e80898e06 (diff)
downloadscintilla-mirror-4a34a1f59a443403844c437d6d6a61c7a8019822.tar.gz
Update all version numbers in Xcode project. Was missed because of change to
ReplaceREInFile.
-rw-r--r--cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj6
-rw-r--r--scripts/LexGen.py3
2 files changed, 5 insertions, 4 deletions
diff --git a/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj b/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj
index f13af73f4..57696931d 100644
--- a/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj
+++ b/cocoa/Scintilla/Scintilla.xcodeproj/project.pbxproj
@@ -607,7 +607,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 5.0.0;
+ CURRENT_PROJECT_VERSION = 5.1.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -637,7 +637,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 5.0.0;
+ CURRENT_PROJECT_VERSION = 5.1.0;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -671,7 +671,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 5.0.0;
+ CURRENT_PROJECT_VERSION = 5.1.0;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
diff --git a/scripts/LexGen.py b/scripts/LexGen.py
index 416f69c2d..a862b6288 100644
--- a/scripts/LexGen.py
+++ b/scripts/LexGen.py
@@ -54,7 +54,8 @@ def UpdateVersionNumbers(sci, root):
"CFBundleShortVersionString", sci.versionDotted)
ReplaceREInFile(cocoa / "Scintilla"/ "Scintilla.xcodeproj" / "project.pbxproj",
"CURRENT_PROJECT_VERSION = [0-9.]+;",
- f'CURRENT_PROJECT_VERSION = {sci.versionDotted};')
+ f'CURRENT_PROJECT_VERSION = {sci.versionDotted};',
+ 0)
def RegenerateAll(rootDirectory):