Skip to content

Commit

Permalink
Versioning.
Browse files Browse the repository at this point in the history
  • Loading branch information
alancoon committed Dec 5, 2022
1 parent d3a6f12 commit 65c27c8
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Source/JavaScriptCore/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/ThirdParty/ANGLE/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/ThirdParty/libwebrtc/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/WebCore/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/WebCore/PAL/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/WebGPU/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/WebInspectorUI/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The system version prefix is based on the current system version.
SYSTEM_VERSION_PREFIX[sdk=iphone*] = 8;
Expand Down
4 changes: 2 additions & 2 deletions Source/WebKit/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down
4 changes: 2 additions & 2 deletions Source/WebKitLegacy/mac/Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ MAJOR_VERSION = 614;
MINOR_VERSION = 4;
TINY_VERSION = 1;
MICRO_VERSION = 0;
NANO_VERSION = 0;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);
NANO_VERSION = 1;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION).$(MICRO_VERSION).$(NANO_VERSION);

// The bundle version and short version string are set based on the current build configuration, see below.
BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
Expand Down

0 comments on commit 65c27c8

Please sign in to comment.