Browse Source

Version bump to 0.2.0, Alpha. Added Changelog.md.

pull/7/head
Muthu Kumar 7 years ago
parent
commit
9a37384aa3
  1. 13
      Changelog.md
  2. 6
      README.md
  3. 2
      index.js
  4. 2
      package.json

13
Changelog.md

@ -0,0 +1,13 @@
# Changelog / Version history
## `up` v. 0.2.0
Changelog:
- Under the hood BREAKING changes. Working directories change.
- `/var/www/` to `/etc/up-serve/static/`
- `/etc/nginx/sites-available/` to `/etc/nginx/conf.d`
- `up static|proxy <domain>` adds the server to `/etc/up-serve/servers.up` list.
- `up kill <domain>` removes server from `servers.up` list.
- `up list` lists available servers from /etc/up-serve/servers.up!
- `up kill-all` destroys all servers and places a `default.conf` in `/etc/nginx/sites-enabled`.

6
README.md

@ -8,10 +8,10 @@
# up
> Current version: `up v.0.1.9 (Pre-Alpha)`
> Current version: `up v.0.2.0 (Alpha)`
> Notes: `up` has reached MVP! 🎉 Changelog will be added from alpha version: `up v.0.2.0` [(Roadmap)](Roadmap.md)\
> ⚠️ ❌ `up` is still not ready for use yet! Do not attempt to use this in development or production until alpha!
> Notes: `up` is now in Alpha! 🎉 [(Changelog)](Changelog.md)\
> ⚠️ ❌ `up` is pretty useable so far. If you're testing `up` on a development server, do give us feedback.
**`up`** is a command line application that creates nginx server blocks quickly with a single command.

2
index.js

@ -28,7 +28,7 @@ requirements(); // Comment in development and uncomment this line in production.
// This should check whether the OS is compatible with this version of `up`
program
.version('0.1.5');
.version('0.2.0');
program
.command('static <domain> [outPort]')

2
package.json

@ -1,6 +1,6 @@
{
"name": "up-serve",
"version": "0.1.9",
"version": "0.2.0",
"description": "A cli tool to quickly create and manage nginx server blocks.",
"main": "index.js",
"scripts": {

Loading…
Cancel
Save