Skip to content

Commit 72ce63d

Browse files
committed
Bump version to 0.2.1
1 parent f06c308 commit 72ce63d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353

5454
- name: Upload coverage reports to Codecov
5555
uses: codecov/codecov-action@v5
56-
if: success() && github.event_name == 'release'
56+
if: success()
57+
# && github.event_name == 'release'
5758
with:
5859
name: codecov-umbrella
5960
fail_ci_if_error: true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kjanat/chatlogger",
33
"description": "API for storing and retrieving chat interactions",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"author": "Kaj Kowalski <dev@kajkowalski.nl> (https://github.com/kjanat)",
66
"license": "MIT",
77
"main": "src/server.js",

src/config/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
const semver = require('semver');
66

77
// Current version information
8-
const currentVersion = '0.2.0';
8+
const currentVersion = '0.2.1';
99

1010
module.exports = {
1111
// Current version without v prefix

0 commit comments

Comments
 (0)