Skip to content

Commit

Permalink
Merge pull request #579 from squaremo/update-node-versions
Browse files Browse the repository at this point in the history
Update README and Makefile with supported Node up to v14
  • Loading branch information
squaremo authored Jul 15, 2020
2 parents db6e6fa + 21b3f92 commit b13e98f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ JSON=amqp-rabbitmq-0.9.1.json
RABBITMQ_CODEGEN=https://raw.githubusercontent.com/rabbitmq/rabbitmq-codegen
AMQP_JSON=$(RABBITMQ_CODEGEN)/$(RABBITMQ_SRC_VERSION)/$(JSON)

NODEJS_VERSIONS='0.8' '0.9' '0.10' '0.11' '0.12' '1.6' '2.5' '3.3' '4.2' '5.5' '6.2' '8.9' '9.11' '10.7' '11.1'
NODEJS_VERSIONS='0.8' '0.9' '0.10' '0.11' '0.12' '1.8.4' '2.5' '3.3' '4.9' '5.12' '6.17' '8.17' '9.11' '10.21' '11.15' '12.18' '13.14' '14.5'

MOCHA=./node_modules/.bin/mocha
_MOCHA=./node_modules/.bin/_mocha
Expand All @@ -29,7 +29,8 @@ test: lib/defs.js

test-all-nodejs: lib/defs.js
for v in $(NODEJS_VERSIONS); \
do nave use $$v $(MOCHA) -u tdd -R progress test; \
do echo "-- Node version $$v --"; \
nave use $$v $(MOCHA) -u tdd -R progress test; \
done

coverage: $(ISTANBUL) lib/defs.js
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* [Examples from RabbitMQ tutorials][tutes]

A library for making AMQP 0-9-1 clients for Node.JS, and an AMQP 0-9-1
client for Node.JS v0.8-0.12, v4-v9, and the intervening io.js
client for Node.JS v0.8-0.12, v4-v14, and the intervening io.js
releases.

This library does not implement [AMQP
Expand Down

0 comments on commit b13e98f

Please sign in to comment.