Skip to content

Commit f58e81f

Browse files
committed
version: 0.5.2
1 parent caa2c36 commit f58e81f

5 files changed

Lines changed: 22 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
* Docker image build and deploy workflow with multi-architecture support
12+
*
1313

1414
### Changed
1515

16-
* Updated release instructions to include steps for updating `Pushi.VERSION` in `js/pushi.js` and copying `js/pushi.js` to `src/extras/js`
17-
* Improved JavaScript module exports formatting in CommonJS export block
16+
*
1817

1918
### Fixed
2019

2120
*
2221

22+
## [0.5.2] - 2026-06-21
23+
24+
### Added
25+
26+
* Docker image build and deploy workflow with multi-architecture support
27+
28+
### Changed
29+
30+
* Updated release instructions to include steps for updating `Pushi.VERSION` in `js/pushi.js` and copying `js/pushi.js` to `src/extras/js`
31+
* Improved JavaScript module exports formatting in CommonJS export block
32+
2333
## [0.5.1] - 2026-01-09
2434

2535
### Added

lib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
setuptools.setup(
4646
name="pushi",
47-
version="0.5.1",
47+
version="0.5.2",
4848
author="Hive Solutions Lda.",
4949
author_email="development@hive.pt",
5050
description="Pushi System API",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
setuptools.setup(
3535
name="pushi-service",
36-
version="0.5.1",
36+
version="0.5.2",
3737
author="Hive Solutions Lda.",
3838
author_email="development@hive.pt",
3939
description="Pushi System",

src/extras/js/pushi.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,12 @@ var Pushi = function(appKey, options) {
136136
this.init(appKey, options);
137137
};
138138

139+
/**
140+
* The version of the Pushi library.
141+
* @type {string}
142+
*/
143+
Pushi.VERSION = "0.5.2";
144+
139145
Pushi.prototype.init = function(appKey, options, callback) {
140146
// tries to retrieve any previously existing instance
141147
// of pushi for the provided key and in case it exists

src/pushi/app/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def on_logout(self):
7272
del self.session["app_secret"]
7373

7474
def _version(self):
75-
return "0.5.1"
75+
return "0.5.2"
7676

7777
def _description(self):
7878
return "Pushi"

0 commit comments

Comments
 (0)