Skip to content

Commit b13e98f

Browse files
authored
Merge pull request #579 from squaremo/update-node-versions
Update README and Makefile with supported Node up to v14
2 parents db6e6fa + 21b3f92 commit b13e98f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ JSON=amqp-rabbitmq-0.9.1.json
33
RABBITMQ_CODEGEN=https://raw.githubusercontent.com/rabbitmq/rabbitmq-codegen
44
AMQP_JSON=$(RABBITMQ_CODEGEN)/$(RABBITMQ_SRC_VERSION)/$(JSON)
55

6-
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'
6+
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'
77

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

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

3536
coverage: $(ISTANBUL) lib/defs.js

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* [Examples from RabbitMQ tutorials][tutes]
1111

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

1616
This library does not implement [AMQP

0 commit comments

Comments
 (0)