Bump version 0.7.0

This commit is contained in:
Charlie Laabs
2019-12-23 16:38:27 -06:00
parent 451e35a27d
commit 4106fc0395
3 changed files with 10 additions and 4 deletions

View File

@@ -93,14 +93,20 @@ npm start
### Setup with Docker Hub image
1. Install Docker for your OS.
1. Open a command prompts and run this one-liner:
1. Open a command prompts and run:
```sh
docker build https://github.com/charlocharlie/markov-discord.git
docker pull charlocharlie/markov-discord
docker run --rm -d charlocharlie/markov-discord:latest
```
# Changelog
### 0.7.0
* Convert project to Typescript
* Optimize Docker build (smaller image)
* Load corpus from filesystem to reduce memory load
### 0.6.2
* Fix MarkovDB not loading on boot

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "markbot",
"version": "0.6.2",
"version": "0.7.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "markbot",
"version": "0.6.2",
"version": "0.7.0",
"description": "A conversational Markov chain bot for Discord",
"main": "index.js",
"scripts": {