Skip to content

Commit

Permalink
version: 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed May 29, 2024
1 parent 5288b7f commit 46bd4f4
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
description="Colony Framework",
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleVersion</key>
<string>1.2.5</string>
<string>1.2.6</string>
<key>CFBundleIdentifier</key>
<string>pt.hive.colony</string>
<key>CFBundleName</key>
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/descriptors/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:name>Colony Gateway</em:name>
<em:version>1.2.5</em:version>
<em:version>1.2.6</em:version>
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/descriptors/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/descriptors/manifest_u.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/resources/win32/vs2008ex/colony_npapi.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/colony_npapi/stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ unsigned char *description_colony_npapi();

#define NPCOLONY_NAME "Colony Gateway Plugin"
#define NPCOLONY_DESCRIPTION "<a href=\"http://getcolony.com/\">Colony Gateway</a> plugin."
#define NPCOLONY_VERSION "1.2.5"
#define NPCOLONY_VERSION "1.2.6"
#define NPCOLONY_MIME "application/x-colony-gateway:colony:[email protected]";
#define NPCOLONY_BINIE "binie"
#define NPCOLONY_PDF "pdf"
Expand Down
2 changes: 1 addition & 1 deletion src/python/npcolony_py/test/global.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 46bd4f4

Please sign in to comment.