diff --git a/LICENSE b/LICENSE index 542e47c..96c1636 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2022 Rob Brackett +Copyright (c) 2012-2023 Rob Brackett Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index fc3793e..a643602 100644 --- a/README.md +++ b/README.md @@ -157,4 +157,4 @@ $ spctl -a -t install -vv editorconfig-textmate.tmplugin License ------- -This plug-in is open source. It is copyright (c) 2012-2022 Rob Brackett and licensed under the MIT license. The full license text is in the `LICENSE` file. +This plug-in is open source. It is copyright (c) 2012-2023 Rob Brackett and licensed under the MIT license. The full license text is in the `LICENSE` file. diff --git a/editorconfig-textmate.xcodeproj/project.pbxproj b/editorconfig-textmate.xcodeproj/project.pbxproj index 76fe7c4..4576621 100644 --- a/editorconfig-textmate.xcodeproj/project.pbxproj +++ b/editorconfig-textmate.xcodeproj/project.pbxproj @@ -511,7 +511,7 @@ CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Developer ID Application"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = "0.5.1-dev"; + CURRENT_PROJECT_VERSION = 0.5.1; DEVELOPMENT_TEAM = HPJWEKK787; ENABLE_HARDENED_RUNTIME = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -525,7 +525,7 @@ "$(BUILT_PRODUCTS_DIR)/editorconfig/**", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = "0.5.1-dev"; + MARKETING_VERSION = 0.5.1; ONLY_ACTIVE_ARCH = NO; OTHER_CODE_SIGN_FLAGS = "--deep"; PRODUCT_BUNDLE_IDENTIFIER = "org.robbrackett.${PRODUCT_NAME:rfc1034identifier}"; @@ -544,7 +544,7 @@ CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Developer ID Application"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = "0.5.1-dev"; + CURRENT_PROJECT_VERSION = 0.5.1; DEVELOPMENT_TEAM = HPJWEKK787; ENABLE_HARDENED_RUNTIME = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -558,7 +558,7 @@ "$(BUILT_PRODUCTS_DIR)/editorconfig/**", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = "0.5.1-dev"; + MARKETING_VERSION = 0.5.1; ONLY_ACTIVE_ARCH = NO; OTHER_CODE_SIGN_FLAGS = "--deep"; PRODUCT_BUNDLE_IDENTIFIER = "org.robbrackett.${PRODUCT_NAME:rfc1034identifier}"; diff --git a/editorconfig-textmate/editorconfig-textmate-Info.plist b/editorconfig-textmate/editorconfig-textmate-Info.plist index e400e33..5e18dae 100644 --- a/editorconfig-textmate/editorconfig-textmate-Info.plist +++ b/editorconfig-textmate/editorconfig-textmate-Info.plist @@ -23,7 +23,7 @@ CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright - Copyright © 2012-2022 Rob Brackett. This is open source software and released under the MIT license. + Copyright © 2012-2023 Rob Brackett. This is open source software and released under the MIT license. NSPrincipalClass ECEditorConfig TMPlugInAPIVersion diff --git a/source/ECConstants.h b/source/ECConstants.h index d769751..e871a00 100644 --- a/source/ECConstants.h +++ b/source/ECConstants.h @@ -2,7 +2,7 @@ // ECConstants.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/ECConstants.m b/source/ECConstants.m index 0b8ce66..ecfc0ac 100644 --- a/source/ECConstants.m +++ b/source/ECConstants.m @@ -2,7 +2,7 @@ // ECConstants.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/ECEditorConfig.h b/source/ECEditorConfig.h index 3d9e428..0d5a02c 100644 --- a/source/ECEditorConfig.h +++ b/source/ECEditorConfig.h @@ -2,7 +2,7 @@ // EditorConfig.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/ECEditorConfig.m b/source/ECEditorConfig.m index 41180aa..f26f158 100644 --- a/source/ECEditorConfig.m +++ b/source/ECEditorConfig.m @@ -2,7 +2,7 @@ // EditorConfig.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/ECSettings.h b/source/ECSettings.h index 241e49f..514b0c9 100644 --- a/source/ECSettings.h +++ b/source/ECSettings.h @@ -2,7 +2,7 @@ // ECSettings.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/ECSettings.m b/source/ECSettings.m index 0568bfd..762d7bc 100644 --- a/source/ECSettings.m +++ b/source/ECSettings.m @@ -2,7 +2,7 @@ // ECSettings.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/TMPlugInController.h b/source/TMPlugInController.h index ee65321..2f24043 100644 --- a/source/TMPlugInController.h +++ b/source/TMPlugInController.h @@ -2,7 +2,7 @@ // TMPlugInController.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSObject+ECDocument.h b/source/additions/NSObject+ECDocument.h index fddda31..6a5b905 100644 --- a/source/additions/NSObject+ECDocument.h +++ b/source/additions/NSObject+ECDocument.h @@ -2,7 +2,7 @@ // NSObject+ECDocument.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSObject+ECDocument.m b/source/additions/NSObject+ECDocument.m index 6668e99..4672df8 100644 --- a/source/additions/NSObject+ECDocument.m +++ b/source/additions/NSObject+ECDocument.m @@ -2,7 +2,7 @@ // NSObject+ECDocument.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSObject+ECSwizzle.h b/source/additions/NSObject+ECSwizzle.h index abc145e..36961c7 100644 --- a/source/additions/NSObject+ECSwizzle.h +++ b/source/additions/NSObject+ECSwizzle.h @@ -2,7 +2,7 @@ // NSObject+ECSwizzle.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSObject+ECSwizzle.m b/source/additions/NSObject+ECSwizzle.m index 00accdb..096b758 100644 --- a/source/additions/NSObject+ECSwizzle.m +++ b/source/additions/NSObject+ECSwizzle.m @@ -2,7 +2,7 @@ // NSObject+ECSwizzle.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSView+EditorConfig.h b/source/additions/NSView+EditorConfig.h index fe2a885..4459cc8 100644 --- a/source/additions/NSView+EditorConfig.h +++ b/source/additions/NSView+EditorConfig.h @@ -2,7 +2,7 @@ // NSView+EditorConfig.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSView+EditorConfig.m b/source/additions/NSView+EditorConfig.m index bef2926..b40772f 100644 --- a/source/additions/NSView+EditorConfig.m +++ b/source/additions/NSView+EditorConfig.m @@ -2,7 +2,7 @@ // NSView+EditorConfig.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSWindow+EditorConfig.h b/source/additions/NSWindow+EditorConfig.h index 1bbcfae..8efc193 100644 --- a/source/additions/NSWindow+EditorConfig.h +++ b/source/additions/NSWindow+EditorConfig.h @@ -2,7 +2,7 @@ // NSWindow+EditorConfig.h // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. // diff --git a/source/additions/NSWindow+EditorConfig.m b/source/additions/NSWindow+EditorConfig.m index 061f7bd..f7dd7ce 100644 --- a/source/additions/NSWindow+EditorConfig.m +++ b/source/additions/NSWindow+EditorConfig.m @@ -2,7 +2,7 @@ // NSWindow+EditorConfig.m // editorconfig-textmate // -// Copyright (c) 2012-2022 Rob Brackett. +// Copyright (c) 2012-2023 Rob Brackett. // This is open source software, released under the MIT license; // see the file LICENSE for details. //