Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
- Added `.npmignore`
- Renamed `release_notes.md` to `CHANGES.md`
- Updated dependencies
  • Loading branch information
Byron.Dupreez committed Mar 21, 2018
1 parent 23a7249 commit 3b3f2da
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 12 deletions.
68 changes: 68 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# IntelliJ Idea related files
.idea
*.iml

.serverless

# All test-related files
test/
copy.sh
5 changes: 5 additions & 0 deletions release_notes.md → CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changes

### 1.0.3
- Added `.npmignore`
- Renamed `release_notes.md` to `CHANGES.md`
- Updated dependencies

### 1.0.2
- Minor updates to .gitignore
- Removed unnecessary `logging-utils` & `deep-equals` dependencies
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rcc-ioredis-adapter v1.0.2
# rcc-ioredis-adapter v1.0.3
Wraps and adapts the 'ioredis' module and its Redis client instances to be used with the 'redis-client-cache' module

Main module:
Expand Down Expand Up @@ -54,4 +54,4 @@ This module's unit tests were developed with and must be run with [tape](https:/
See the [package source](https://github.com/byron-dupreez/rcc-ioredis-adapter) for more details.

## Changes
See [release_notes.md](./release_notes.md
See [CHANGES.md](./CHANGES.md)
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rcc-ioredis-adapter",
"version": "1.0.2",
"version": "1.0.3",
"description": "Wraps and adapts the 'ioredis' module & its Redis client instances to be used with the 'redis-client-cache' module",
"author": "Byron du Preez",
"license": "Apache-2.0",
Expand All @@ -12,9 +12,9 @@
"test": "tape ./test/*.test.js"
},
"dependencies": {
"core-functions": "3.0.22",
"core-functions": "3.0.23",
"ioredis": "3.2.2",
"rcc-core": "1.0.3"
"rcc-core": "1.0.4"
},
"devDependencies": {
"tape": "^4.9.0",
Expand Down

0 comments on commit 3b3f2da

Please sign in to comment.