diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..0925284 --- /dev/null +++ b/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 ` adds the server to `/etc/up-serve/servers.up` list. +- `up kill ` 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`. \ No newline at end of file diff --git a/README.md b/README.md index 2f24478..a4aaf06 100644 --- a/README.md +++ b/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. diff --git a/index.js b/index.js index 52d1550..3f1791e 100755 --- a/index.js +++ b/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 [outPort]') diff --git a/package.json b/package.json index 0d9be20..74a1c31 100644 --- a/package.json +++ b/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": {