Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pirak committed Apr 20, 2021
1 parent 5f5b035 commit 6f6f86c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## Unreleased
-

## v0.1.1
- Add: message when user tries to enter fewer than minimum amount of points

## v0.1.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "firebot-gambling-script",
"description": "A script to gamble currency.",
"version": "0.1.0",
"version": "0.1.1",
"license": "EUPL-1.2",
"author": "pirak",
"contributors": [],
Expand Down
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { GambleModePercentage } from './model/gamble-mode-percentage';
import { GambleEntry } from './model/gamble-entry';
import { ChatMessageEffect } from './helpers/effects/chat-message-effect';

const scriptVersion = '0.1.1';

export interface Params {
currencyId: string;
userCurrentPoints: string;
Expand Down Expand Up @@ -120,7 +122,7 @@ export class GamblingScript implements Firebot.CustomScript<Params> {
name: 'Firebot Gambling Script',
description: 'A script that lets chat users gamble currency',
author: 'pirak__',
version: '0.1.0',
version: scriptVersion,
firebotVersion: '5',
};
}
Expand Down

0 comments on commit 6f6f86c

Please sign in to comment.