Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
Update changelog and package json
Browse files Browse the repository at this point in the history
* Publishing v2.0.0
* Adds prepublish script
  • Loading branch information
alikhil committed Dec 30, 2016
1 parent 7219372 commit 962e8c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## [Unreleased]
## [2.0.0] - 2016-12-30
**Incomatible with older versions**
### Changed
- Moves AES implementation to outer package zaes-js
- Replaces inner compresser with lz-string.js
- Replaces inner rsa implementation with node-rsa
- Removes unused code(hash, utils)
- Changes module start script
### Adds
- keys module for generating AES and RSA keys
- keys module for generating AES and RSA keys
### Removed
- Own RSA, AES and compression implementations
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"name": "sttp",
"description": "STTP - new generation Secure TBM Transfer Protocol. STTP works over HTTP and it very similar to TLS. It is a kind of poor copy of HTTPS.",
"version": "1.1.0",
"version": "2.0.0",
"main": "index.js",
"directories": {
"test": "test"
Expand All @@ -30,7 +30,8 @@
"analyze-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ",
"send-coverage":"cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"coverage":"npm run analyze-coverage && npm run send-coverage",
"browserify": "echo 'there will be broserify soon'"
"browserify": "echo 'there will be broserify soon'",
"prepublish": "npm run compile && npm run browserify"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 962e8c4

Please sign in to comment.