@@ -4,31 +4,31 @@ Changelog
4
4
5
5
Here are the changes for libvcs.
6
6
7
- 0.5-current
8
- -----------
7
+ libvcs 0.5-current
8
+ ------------------
9
9
Generally speaking, refactor / magic is in the process of being stripped
10
10
out in the next few releases. The API is subject to change significantly
11
11
in pre-1.0 builds.
12
12
13
- 0.4.3 < 2020-08-01>
14
- ------------------
13
+ libvcs 0.4.3 ( 2020-08-01)
14
+ -------------------------
15
15
- [bug] :func: `libvcs.git.extract_status() ` Fix issue capturing branch names
16
16
with special characters
17
17
18
- 0.4.2 < 2020-08-01>
19
- ------------------
18
+ libvcs 0.4.2 ( 2020-08-01)
19
+ -------------------------
20
20
- [bug] :meth: `libvcs.git.GitRepo.get_current_remote_name() ` Handle case where
21
21
upstream is unpushed
22
22
- [feature] :meth: `libvcs.git.GitRepo.status() ` - Retrieve status of repo
23
23
- [feature] :func: `libvcs.git.extract_status() ` - Return structured info from
24
24
``git status ``
25
25
26
- 0.4.1 < 2020-08-01>
27
- ------------------
26
+ libvcs 0.4.1 ( 2020-08-01)
27
+ -------------------------
28
28
- Remove log statement
29
29
30
- 0.4 < 2020-08-01>
31
- ----------------
30
+ libvcs 0.4 ( 2020-08-01)
31
+ -----------------------
32
32
33
33
**Breaking changes **
34
34
@@ -71,40 +71,40 @@ implicit behavior.
71
71
- New method: :meth: `libvcs.git.GitRepo.get_current_remote_name() `
72
72
73
73
74
- 0.3.3 < 2020-07-29>
75
- ------------------
74
+ libvcs 0.3.3 ( 2020-07-29)
75
+ -------------------------
76
76
- Remove f-string from test
77
77
- :meth: `libvcs.git.GitRepo.obtain ` Overwrite remote if exists
78
78
79
- 0.3.2 < 2020-07-26>
80
- ------------------
79
+ libvcs 0.3.2 ( 2020-07-26)
80
+ -------------------------
81
81
- :issue: `258 ` :meth: `libvcs.git.GitRepo.remote_set `
82
82
83
83
- Fix updating of remote URLs
84
84
- Add new param: ``overwrite ``, usage: ``repo.remote_set(url, 'origin', overwrite=True) ``
85
85
86
- 0.3.1post1 < 2020-07-26>
87
- -----------------------
86
+ libvcs 0.3.1post1 ( 2020-07-26)
87
+ ------------------------------
88
88
- Fix version in pyroject.toml
89
89
- Update developer docs
90
90
91
- 0.3.1 < 2020-07-25>
92
- ------------------
91
+ libvcs 0.3.1 ( 2020-07-25)
92
+ -------------------------
93
93
- Fix issue with subprocess.Popen loud warning on Python 3.8
94
94
- :issue: `296 ` - Move from Pipfile to poetry
95
95
- Sort imports
96
96
- Add isort package, isort configuration in setup.cfg, and
97
97
``make isort `` task to Makefile.
98
98
- Add ``project_urls `` to setup.py
99
99
100
- 0.3.0 < 2018-03-12>
101
- ------------------
100
+ libvcs 0.3.0 ( 2018-03-12)
101
+ -------------------------
102
102
- Move vcspull to the vcs-python organization
103
103
- Fix issue where VCS objects failed to set attribute in Ubuntu
104
104
18.04.
105
105
106
- 0.2.3 < 2016-12-22>
107
- ------------------
106
+ libvcs 0.2.3 ( 2016-12-22)
107
+ -------------------------
108
108
- Update documentation to point to libvcs.git-pull.com
109
109
- Switch doc theme to alabaster
110
110
- Pin and update libraries via pyup
@@ -115,36 +115,36 @@ implicit behavior.
115
115
- pin alabaster to 0.7.9
116
116
- pin sphinx to 1.5.1
117
117
118
- 0.2.2 < 2016-11-23>
119
- ------------------
118
+ libvcs 0.2.2 ( 2016-11-23)
119
+ -------------------------
120
120
- Fix bug with unused ``support `` module in vcspull. See `#43 `_
121
121
122
- 0.2.1 < 2016-09-13>
123
- ------------------
122
+ libvcs 0.2.1 ( 2016-09-13)
123
+ -------------------------
124
124
- Update pytest to 3.0.2, remove unused pytest-raisesregexp
125
125
dependency.
126
126
- Fix bug in ``which `` when executable is not found. Allow
127
127
specifying search paths manually.
128
128
- Better support for missing VCS when testing on git and
129
129
subversion.
130
130
131
- 0.2.0 < 2016-06-24>
132
- ------------------
131
+ libvcs 0.2.0 ( 2016-06-24)
132
+ -------------------------
133
133
- :issue: `9 ` Support for ``progress_callback `` to use realtime output
134
134
from commands in progress (such as ``git fetch ``).
135
135
- :issue: `9 ` More tests, internal factoring and documentation, thanks
136
136
@jcfr
137
137
- :issue: `9 ` Official support for pypy, pypy3
138
138
- :issue: `11 ` : Fix unbound local when updating git repos
139
139
140
- 0.1.7 < 2016-06-21>
141
- ------------------
140
+ libvcs 0.1.7 ( 2016-06-21)
141
+ -------------------------
142
142
- :issue: `7 ` Add ``check_returncode `` property to run, thanks @jcfr
143
143
- :issue: `8 ` Remove all cases of ``run_buffered `` / buffering from
144
144
the library.
145
145
146
- 0.1.6 < 2016-06-21>
147
- ------------------
146
+ libvcs 0.1.6 ( 2016-06-21)
147
+ -------------------------
148
148
- :issue: `5 ` Remove colorama dependency
149
149
- :issue: `6 ` Remove log module. Logging defaults.
150
150
@@ -178,33 +178,33 @@ implicit behavior.
178
178
vcslogger.addHandler(repo_channel)
179
179
vcslogger.setLevel(level)
180
180
181
- 0.1.5 < 2016-06-21>
182
- ------------------
181
+ libvcs 0.1.5 ( 2016-06-21)
182
+ -------------------------
183
183
- Fix issue where repo context wouldn't pass to repo logging
184
184
adapter
185
185
186
- 0.1.4 < 2016-06-20>
187
- ------------------
186
+ libvcs 0.1.4 ( 2016-06-20)
187
+ -------------------------
188
188
- Fix print_stdout_on_progress_end signature in git update
189
189
190
- 0.1.3 < 2016-06-20>
191
- ------------------
190
+ libvcs 0.1.3 ( 2016-06-20)
191
+ -------------------------
192
192
- ``create_repo `` function for regular vcs urls
193
193
- API docs updated
194
194
195
- 0.1.2 < 2016-06-20>
196
- ------------------
195
+ libvcs 0.1.2 ( 2016-06-20)
196
+ -------------------------
197
197
- change signature on ``create_repo_from_pip_url `` to accept
198
198
``pip_url `` insetad of ``url ``.
199
199
- ``Base `` to accept ``repo_dir `` instead of ``name `` and
200
200
``parent_dir ``.
201
201
202
- 0.1.1 < 2016-06-20>
203
- ------------------
202
+ libvcs 0.1.1 ( 2016-06-20)
203
+ -------------------------
204
204
- remove unneeded pyyaml, kaptan and click dependencies
205
205
206
- 0.1.0 < 2016-06-20>
207
- ------------------
206
+ libvcs 0.1.0 ( 2016-06-20)
207
+ -------------------------
208
208
- libvcs split from `vcspull `_
209
209
210
210
.. _vcspull : https://github.com/vcs-python/vcspull
0 commit comments