aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-15 11:51:51 +0100
committerChocobozzz <me@florianbigard.com>2018-01-15 11:55:27 +0100
commit519b8df5f840a9223dd78a83cbc484b0eebef578 (patch)
tree94bf05483350d35d0c08b804d22d167cdc4c3516
parent5ef372a511ff13fa7d3df46276763feb48bc6ede (diff)
downloadPeerTube-519b8df5f840a9223dd78a83cbc484b0eebef578.tar.gz
PeerTube-519b8df5f840a9223dd78a83cbc484b0eebef578.tar.zst
PeerTube-519b8df5f840a9223dd78a83cbc484b0eebef578.zip
Bumped to version 0.0.7-alphav0.0.8-alpha
-rw-r--r--.gitignore1
-rw-r--r--client/package.json2
-rw-r--r--package.json2
-rwxr-xr-xscripts/release.sh6
4 files changed, 7 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 13f31db4b..2805af0fc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@
15/PeerTube.iml 15/PeerTube.iml
16peertube.zip 16peertube.zip
17/profiling/ 17/profiling/
18/*.zip
diff --git a/client/package.json b/client/package.json
index 8981e3271..514e43286 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,6 +1,6 @@
1{ 1{
2 "name": "peertube-client", 2 "name": "peertube-client",
3 "version": "0.0.6-alpha", 3 "version": "0.0.7-alpha",
4 "private": true, 4 "private": true,
5 "licence": "GPLv3", 5 "licence": "GPLv3",
6 "author": { 6 "author": {
diff --git a/package.json b/package.json
index 59445ceed..0eee93e2b 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "name": "peertube", 2 "name": "peertube",
3 "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.", 3 "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
4 "version": "0.0.6-alpha", 4 "version": "0.0.7-alpha",
5 "private": true, 5 "private": true,
6 "licence": "GPLv3", 6 "licence": "GPLv3",
7 "engines": { 7 "engines": {
diff --git a/scripts/release.sh b/scripts/release.sh
index 03eb69f21..aef4327e4 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -29,5 +29,7 @@ npm run build || exit -1
29#npm test || exit -1 29#npm test || exit -1
30 30
31cd ../ || exit -1 31cd ../ || exit -1
32rm -f PeerTube/peertube.zip || exit -1 32
33zip -r PeerTube/peertube.zip PeerTube/{CREDITS.md,FAQ.md,LICENSE,README.md,client/dist/,client/yarn.lock,client/package.json,config,dist,package.json,scripts,support,tsconfig.json,yarn.lock} 33ln -s "PeerTube" "peertube-v$1" || exit -1
34zip -r "PeerTube/peertube-v$1.zip" "peertube-v$1"/{CREDITS.md,FAQ.md,LICENSE,README.md,client/dist/,client/yarn.lock,client/package.json,config,dist,package.json,scripts,support,tsconfig.json,yarn.lock} || exit -1
35rm "peertube-v$1" || exit -1