Skip to content

Commit 6f6f86c

Browse files
committed
bump version
1 parent 5f5b035 commit 6f6f86c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## Unreleased
4+
-
5+
6+
## v0.1.1
47
- Add: message when user tries to enter fewer than minimum amount of points
58

69
## v0.1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "firebot-gambling-script",
33
"description": "A script to gamble currency.",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"license": "EUPL-1.2",
66
"author": "pirak",
77
"contributors": [],

src/main.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import { GambleModePercentage } from './model/gamble-mode-percentage';
1111
import { GambleEntry } from './model/gamble-entry';
1212
import { ChatMessageEffect } from './helpers/effects/chat-message-effect';
1313

14+
const scriptVersion = '0.1.1';
15+
1416
export interface Params {
1517
currencyId: string;
1618
userCurrentPoints: string;
@@ -120,7 +122,7 @@ export class GamblingScript implements Firebot.CustomScript<Params> {
120122
name: 'Firebot Gambling Script',
121123
description: 'A script that lets chat users gamble currency',
122124
author: 'pirak__',
123-
version: '0.1.0',
125+
version: scriptVersion,
124126
firebotVersion: '5',
125127
};
126128
}

0 commit comments

Comments
 (0)