File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # # gitlab-mirrors v0.6.0
3
+
4
+ * Consolidate user options and deps inclusion. See [PR # 104][#104]
5
+ * Added support for version 4 of the Gitlab API. See [PR # 100][#100]
6
+
7
+ [#100]: https://github.com/samrocketman/gitlab-mirrors/pull/100
8
+ [#104]: https://github.com/samrocketman/gitlab-mirrors/pull/104
9
+
10
+
1
11
---
2
12
## gitlab-mirrors v0.5.3
3
13
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ Created by Sam Gleske under [MIT License](LICENSE).
81
81
* Docs #54 [ Martijn Vermaat] ( https://github.com/martijnvermaat )
82
82
* Better logging #57 [ Loic Dachary] ( https://github.com/dachary )
83
83
* Fixed project transfer bug #78 [ Corey Osman] ( https://github.com/logicminds )
84
+ * Added support for GitLab API v4 #100 [ Romke van Dijk] ( https://github.com/zyronix )
84
85
85
86
[ gitlab-api ] : http://api.gitlab.org/
86
87
[ gm-docker ] : https://github.com/Klowner/docker-gitlab-mirrors
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ of gitlab in a production environment. If you only have a single gitlab
6
6
instance then follow these steps with care and at your own risk.
7
7
8
8
gitlab-mirrors has been certified to use a new prerequisite library called
9
- [ python-gitlab] ( https://github.com/python-gitlab/python-gitlab ) . Therefore
10
- you must install ` python-gitlab ` before upgrading ` gitlab-mirrors ` to the latest
9
+ [ python-gitlab] ( https://github.com/python-gitlab/python-gitlab ) . Therefore you
10
+ must install ` python-gitlab ` before upgrading ` gitlab-mirrors ` to the latest
11
11
edition.
12
12
13
13
# 1. Disable any cron jobs
@@ -34,3 +34,14 @@ I'll ouline the steps here real quick.
34
34
35
35
Test on a dummy project to ensure your new setup works. Once you have verified
36
36
everything works then you can re-enable the cron jobs.
37
+
38
+ # Alternatively
39
+
40
+ Rely on virtualenv.
41
+
42
+ virtualenv -p python2.7 .venv
43
+ source ./.venv/bin/activate
44
+ pip install python-gitlab
45
+
46
+ Be sure to source ./.venv/bin/activate before running gitlab-mirrors shell
47
+ scripts.
Original file line number Diff line number Diff line change 1
- VERSION="v0.5.4pre "
1
+ VERSION="v0.6.0 "
You can’t perform that action at this time.
0 commit comments