From 46bd4f4b187c56f9f2e350cf38f4e1c51f019c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Wed, 29 May 2024 23:23:36 +0100 Subject: [PATCH] version: 1.2.6 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- src/colony_npapi/Info.plist | 2 +- src/colony_npapi/descriptors/install.rdf | 2 +- src/colony_npapi/descriptors/manifest.json | 2 +- src/colony_npapi/descriptors/manifest_u.json | 2 +- src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc | 2 +- src/colony_npapi/stdafx.h | 2 +- src/python/npcolony_py/test/global.py | 2 +- 9 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 340d0de..2c0701b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +* + +## [1.2.6] - 2024-05-29 + +### Fixed + * Removed extra line with *.h inclusion ## [1.2.5] - 2024-05-29 diff --git a/setup.py b/setup.py index ef41653..5effe7e 100644 --- a/setup.py +++ b/setup.py @@ -91,7 +91,7 @@ def rollback_sources(sources, base=".cpp", target=".c"): try: setuptools.setup( name="npcolony", - version="1.2.5", + version="1.2.6", author="Hive Solutions Lda.", author_email="development@hive.pt", description="Colony Framework", diff --git a/src/colony_npapi/Info.plist b/src/colony_npapi/Info.plist index 5b7130c..080558e 100644 --- a/src/colony_npapi/Info.plist +++ b/src/colony_npapi/Info.plist @@ -9,7 +9,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleVersion - 1.2.5 + 1.2.6 CFBundleIdentifier pt.hive.colony CFBundleName diff --git a/src/colony_npapi/descriptors/install.rdf b/src/colony_npapi/descriptors/install.rdf index 413eb51..75f45b6 100644 --- a/src/colony_npapi/descriptors/install.rdf +++ b/src/colony_npapi/descriptors/install.rdf @@ -2,7 +2,7 @@ gateway@getcolony.com Colony Gateway - 1.2.5 + 1.2.6 {ec8030f7-c20a-464f-9b0e-13a3a9e97384} diff --git a/src/colony_npapi/descriptors/manifest.json b/src/colony_npapi/descriptors/manifest.json index cf7c06d..5ce4521 100644 --- a/src/colony_npapi/descriptors/manifest.json +++ b/src/colony_npapi/descriptors/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Colony Gateway", - "version": "1.2.5", + "version": "1.2.6", "description": "Gateway plugin for interaction with colony framework native tools", "icons": { "16": "images/colony_icon_16.png", diff --git a/src/colony_npapi/descriptors/manifest_u.json b/src/colony_npapi/descriptors/manifest_u.json index 86e4e08..9a195d5 100644 --- a/src/colony_npapi/descriptors/manifest_u.json +++ b/src/colony_npapi/descriptors/manifest_u.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Colony Gateway", - "version": "1.2.5", + "version": "1.2.6", "description": "Gateway plugin for interaction with colony framework native tools", "icons": { "16": "images/colony_icon_16.png", diff --git a/src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc b/src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc index a376c2a..23d8be4 100644 --- a/src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc +++ b/src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc @@ -51,7 +51,7 @@ BEGIN BLOCK "040904e4" BEGIN VALUE "CompanyName", "Hive Solutions Lda." - VALUE "FileDescription", "1.2.5" + VALUE "FileDescription", "1.2.6" VALUE "FileExtents", "colony" VALUE "FileOpenName", "Colony Gateway Plugin" VALUE "FileVersion", "1, 0, 0, 1" diff --git a/src/colony_npapi/stdafx.h b/src/colony_npapi/stdafx.h index 7316ecb..505f570 100644 --- a/src/colony_npapi/stdafx.h +++ b/src/colony_npapi/stdafx.h @@ -150,7 +150,7 @@ unsigned char *description_colony_npapi(); #define NPCOLONY_NAME "Colony Gateway Plugin" #define NPCOLONY_DESCRIPTION "Colony Gateway plugin." -#define NPCOLONY_VERSION "1.2.5" +#define NPCOLONY_VERSION "1.2.6" #define NPCOLONY_MIME "application/x-colony-gateway:colony:gateway@getcolony.com"; #define NPCOLONY_BINIE "binie" #define NPCOLONY_PDF "pdf" diff --git a/src/python/npcolony_py/test/global.py b/src/python/npcolony_py/test/global.py index 275b06a..7541d3a 100644 --- a/src/python/npcolony_py/test/global.py +++ b/src/python/npcolony_py/test/global.py @@ -10,6 +10,6 @@ class GlobalTest(unittest.TestCase): def test_basic(self): self.assertEqual(type(npcolony.VERSION), str) - self.assertEqual(npcolony.VERSION, "1.2.5") + self.assertEqual(npcolony.VERSION, "1.2.6") self.assertEqual(type(npcolony.get_devices()), list)