Skip to content

Commit a9db0f9

Browse files
committed
1.1.1
1 parent e6967ba commit a9db0f9

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,13 @@ that simplifies basic input and output of the text based games.
137137
- extend the readme?
138138
- ...
139139

140-
### 1.1.1 - ?? November 2018
140+
### 1.1.1 - 18 November 2018
141141
- adds dedicated 'GameLoopIteration' type that solves the problem in the *.d.ts file used by older typescript compilers
142142
- version upgrade of terminal-game-io (2.1.2 -> 3.1.0) - thanks to the new version of terminal-game-io all externals could be removed ('process' and 'readline')
143-
- [TODO] updates in readme
143+
- npm keywords update
144+
- big update in examples (external stackblitz examples, internal API client example)
145+
- big update in readme (code examples, animated gifs)
146+
- simple-tetris is finally easy to import in any other project
144147

145148
### 1.1.0 - 13 September 2018
146149
- rename 'assets' directory to 'templates'

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-tetris",
3-
"version": "1.1.1-rc",
3+
"version": "1.1.1",
44
"description": "This package provides API that allows you to easily create clones of the Tetris game. It handles game core - your role is to write the UI. Library was inspired by Redux and was written from scratch in TypeScript.",
55
"keywords": [
66
"ascii game",
@@ -38,7 +38,7 @@
3838
"npm-check": "npm-check --skip-unused",
3939
"npm-check:u": "npm-check --skip-unused -u"
4040
},
41-
"main": "dist/simple-tetris-v1.1.1-rc.js",
41+
"main": "dist/simple-tetris-v1.1.1.js",
4242
"types": "dist/main.d.ts",
4343
"files": [
4444
"dist/"

src/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula
22

3-
export const version = '1.1.1-rc';
3+
export const version = '1.1.1';
44
export const author = 'Robert Rypuła';
55
export const githubUrl = 'https://github.com/robertrypula';

src/templates/ascii-runner-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula
22

3-
const SimpleTetris = require('./simple-tetris-v1.1.1-rc.js');
3+
const SimpleTetris = require('./simple-tetris-v1.1.1.js');
44
const asciiRunner = new SimpleTetris.AsciiRunner();
55

66
// in your application replace it to: require('simple-tetris');

0 commit comments

Comments
 (0)