aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-09-28 20:28:18 +0300
committerValentin Popov <info@valentineus.link>2017-09-28 20:28:18 +0300
commitba42758715c8f93a5ce50a9201659979d43897fe (patch)
treef3c72c529f56deace0a1371903faa14bdcb9cc15
parent677996e5352f77016a666468f343dc35f690863f (diff)
downloadiii-client-ba42758715c8f93a5ce50a9201659979d43897fe.tar.xz
iii-client-ba42758715c8f93a5ce50a9201659979d43897fe.zip
Release of version 2.1.0.
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md8
-rw-r--r--package.json2
3 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd705c8..0fad500 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,10 @@
# Description of releases
+## 2.1.0 (28-09-2017)
+Features:
+ - The assembly system has been reworked, now the package is being assembled for use in browsers.
+ - Added a system of automatic assembly and publishing.
+ - Many small improvements to the package architecture.
+
## 2.0.0 (29-07-2017)
Features:
- Using Promise.
diff --git a/README.md b/README.md
index be885bd..c673c29 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,18 @@ Simple API for communicating with the bot of the \"iii.ru\" service.
- Installation and processing of sessions.
## Installation
+NodeJS:
```bash
npm install --save iii-client
```
+Browser:
+```html
+<script src="https://unpkg.com/iii-client@latest/dist/bundle.js">
+ /* client - This is the global name for accessing the package */
+</script>
+```
+
## Using
An example of a connection, receiving session identification and sending a bot message:
```javascript
diff --git a/package.json b/package.json
index af9eda4..2008b9f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "iii-client",
- "version": "2.0.1",
+ "version": "2.1.0",
"description": "Simple API for communicating with the bot of the \"iii.ru\" service.",
"homepage": "https://github.com/valentineus/iii-client",
"license": "MIT",