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+
111---
212## gitlab-mirrors v0.5.3
313
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ Created by Sam Gleske under [MIT License](LICENSE).
8181* Docs #54 [ Martijn Vermaat] ( https://github.com/martijnvermaat )
8282* Better logging #57 [ Loic Dachary] ( https://github.com/dachary )
8383* 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 )
8485
8586[ gitlab-api ] : http://api.gitlab.org/
8687[ 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
66instance then follow these steps with care and at your own risk.
77
88gitlab-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
1111edition.
1212
1313# 1. Disable any cron jobs
@@ -34,3 +34,14 @@ I'll ouline the steps here real quick.
3434
3535Test on a dummy project to ensure your new setup works. Once you have verified
3636everything 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