Skip to content

Commit

Permalink
Housekeeping...
Browse files Browse the repository at this point in the history
- Version to 8.5.1
- Add macros for macOS 12.4 and 12.5
  • Loading branch information
ronaldoussoren committed Aug 12, 2022
1 parent 30707f5 commit 90508fc
Show file tree
Hide file tree
Showing 216 changed files with 728 additions and 142 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# built documents.
#
# The short X.Y version.
version = "8.5"
version = "8.5.1"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 2 additions & 0 deletions pyobjc-core/Modules/objc/module.m
Original file line number Diff line number Diff line change
Expand Up @@ -2041,6 +2041,8 @@ + (void)targetForBecomingMultiThreaded:(id)sender
{"MAC_OS_X_VERSION_12_1", MAC_OS_X_VERSION_12_1},
{"MAC_OS_X_VERSION_12_2", MAC_OS_X_VERSION_12_2},
{"MAC_OS_X_VERSION_12_3", MAC_OS_X_VERSION_12_3},
{"MAC_OS_X_VERSION_12_4", MAC_OS_X_VERSION_12_4},
{"MAC_OS_X_VERSION_12_5", MAC_OS_X_VERSION_12_5},
{"PyObjC_BUILD_RELEASE", PyObjC_BUILD_RELEASE},
{"_NSNotFound", NSNotFound},
{"OBJC_ASSOCIATION_ASSIGN", OBJC_ASSOCIATION_ASSIGN},
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-core/Modules/objc/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-core/Modules/objc/pyobjc.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
*/

#define OBJC_VERSION "8.5"
#define OBJC_VERSION "8.5.1"

#define PY_SSIZE_T_CLEAN
#include <Python.h>
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-AVFoundation/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AVFoundation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AVFoundation",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-AVKit/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AVKit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AVKit",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-Accessibility/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-Accessibility/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import os
from pyobjc_setup import setup, Extension

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-Accessibility",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-Accounts/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-Accounts",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AdServices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AdServices",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AdSupport/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AdSupport",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-AddressBook/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AddressBook/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AddressBook",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AppTrackingTransparency/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AppTrackingTransparency",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AppleScriptKit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""
from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AppleScriptKit",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AppleScriptObjC/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AppleScriptObjC",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-ApplicationServices/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-ApplicationServices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from pyobjc_setup import setup, Extension

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-ApplicationServices",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AudioVideoBridging/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""
from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AudioVideoBridging",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AuthenticationServices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AuthenticationServices",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-AutomaticAssessmentConfiguration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import os
from pyobjc_setup import setup, Extension

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-AutomaticAssessmentConfiguration",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-Automator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-Automator",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-BusinessChat/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-BusinessChat",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-CFNetwork/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-CFNetwork/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""
from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-CFNetwork",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-CalendarStore/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-CalendarStore",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-CallKit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-CallKit",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-ClassKit/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-ClassKit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from pyobjc_setup import setup, Extension

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-ClassKit",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-CloudKit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-CloudKit",
Expand Down
8 changes: 8 additions & 0 deletions pyobjc-framework-Cocoa/Modules/pyobjc-compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ NS_ASSUME_NONNULL_BEGIN
#define MAC_OS_X_VERSION_12_3 120300
#endif

#ifndef MAC_OS_X_VERSION_12_4
#define MAC_OS_X_VERSION_12_4 120400
#endif

#ifndef MAC_OS_X_VERSION_12_5
#define MAC_OS_X_VERSION_12_5 120500
#endif

/*
*
* End of Cocoa definitions
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-Cocoa/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from pyobjc_setup import Extension, setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-Cocoa",
Expand Down
2 changes: 1 addition & 1 deletion pyobjc-framework-Collaboration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""
from pyobjc_setup import setup

VERSION = "8.5"
VERSION = "8.5.1"

setup(
name="pyobjc-framework-Collaboration",
Expand Down
Loading

0 comments on commit 90508fc

Please sign in to comment.