From 85bfc7820a3fe6151d4814647645077fd5a0897a Mon Sep 17 00:00:00 2001 From: pirak <82913078+pirak@users.noreply.github.com> Date: Tue, 20 Apr 2021 23:39:51 +0200 Subject: [PATCH] bump version --- CHANGELOG.md | 4 +++- package.json | 2 +- src/main.ts | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3525ea0c..399f3d13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog ## Unreleased +- … + +## v0.1.2 - Add: parameter to define the percentage of points that should be added to the jackpot. Also enables disabling of the jackpot. -- … ## v0.1.1 - Add: message when user tries to enter fewer than minimum amount of points diff --git a/package.json b/package.json index 2079c3f4..713107c3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "firebot-gambling-script", "description": "A script to gamble currency.", - "version": "0.1.1", + "version": "0.1.2", "license": "EUPL-1.2", "author": "pirak", "contributors": [], diff --git a/src/main.ts b/src/main.ts index 661993a0..4abc5ba1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -11,7 +11,7 @@ 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'; +const scriptVersion = '0.1.2'; export interface Params { currencyId: string;