From fe105279662b23074793225a09f7bdb0fcb7ed61 Mon Sep 17 00:00:00 2001 From: Andris Reinman Date: Sun, 18 Jan 2015 12:23:12 +0200 Subject: [PATCH] Bumped version to v1.4.6 --- README.md | 10 ++++------ package.json | 4 ++-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d57a9209..1373a4b5 100644 --- a/README.md +++ b/README.md @@ -35,11 +35,11 @@ var https = require('https'), pem.createCertificate({days:1, selfSigned:true}, function(err, keys){ var app = express(); - + app.get('/', requireAuth, function(req, res){ res.send("o hai!"); }); - + https.createServer({key: keys.serviceKey, cert: keys.certificate}, app).listen(443); }); ``` @@ -126,7 +126,7 @@ Where * **certificate** is a PEM encoded CSR or a certificate * **callback** is a callback function with an error object and `{country, state, locality, organization, organizationUnit, commonName, emailAddress, validity{start, end}, san{dns, ip}? }` - + ? *san* is only present if the CSR or certificate has SAN entries. ### Get fingerprint @@ -153,6 +153,4 @@ Where ## License - - -**MIT** +**MIT** \ No newline at end of file diff --git a/package.json b/package.json index 98cbd8a8..a52f6001 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Andris Reinman ", "name": "pem", "description": "Create private keys and certificates with node.js", - "version": "1.4.5", + "version": "1.4.6", "repository": { "type": "git", "url": "git://github.com/andris9/pem.git" @@ -19,4 +19,4 @@ "engines": { "node": "*" } -} +} \ No newline at end of file