Skip to content

Commit 18593d2

Browse files
committed
0.4.0
- [BREAKING] changes the interface for authentication to make it more flexible - when error is sent back to client ensure error is string
1 parent 57eae81 commit 18593d2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 0.4.0 (12/03/2017)
22

33
- [BREAKING] changes the interface for authentication to make it more flexible
44
- when error is sent back to client ensure error is string

docs/code/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Git.html"
4848
<section class="readme">
4949
<article><h1>node-git-server</h1><blockquote>
5050
<p>🎡 A configurable git server written in Node.js</p>
51+
<blockquote>
52+
<p>there be 🐲 here! The API's and functionality are still be cemented, anything before a 1.0.0 release will be subject to change. </p>
53+
</blockquote>
5154
</blockquote>
5255
<p><a href="https://www.npmjs.com/package/node-git-server"><img src="https://img.shields.io/npm/v/node-git-server.svg" alt="Npm Version"></a>
5356
<a href="https://travis-ci.org/gabrielcsapo/node-git-server"><img src="https://travis-ci.org/gabrielcsapo/node-git-server.svg?branch=master" alt="Build Status"></a>
@@ -57,7 +60,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Git.html"
5760
<a href=""><img src="https://img.shields.io/npm/dt/node-git-server.svg" alt="npm"></a>
5861
<a href=""><img src="https://img.shields.io/npm/dm/node-git-server.svg" alt="npm"></a></p>
5962
<h1>Install</h1><pre class="prettyprint source"><code>npm install node-git-server</code></pre><h1>Usage</h1><pre class="prettyprint source lang-javascript"><code>const Server = require('node-git-server');
60-
const repo = new Server(path.resolve(__dirname, 'tmp'), {
63+
const repos = new Server(path.resolve(__dirname, 'tmp'), {
6164
autoCreate: true,
6265
authenticate: (type, repo, user, next) => {
6366
if(type == 'upload') {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-git-server",
3-
"version": "0.3.4",
3+
"version": "0.4.0",
44
"description": "🎡 A configurable git server written in Node.js",
55
"author": "Gabriel J. Csapo <[email protected]>",
66
"contributors": [

0 commit comments

Comments
 (0)