Skip to content

Commit f5f075b

Browse files
committed
build(CHANGES): Fix headers to show proper RST ids (for internal anchors)
cat CHANGES | sed s/"<"/"\("/g | sed s/">"/"\)"/g | \ sed 's/^0\..*/libvcs &/g' | sed 's/^--/&-------/g'
1 parent 0c22fe1 commit f5f075b

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

CHANGES

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@ Changelog
44

55
Here are the changes for libvcs.
66

7-
0.5-current
8-
-----------
7+
libvcs 0.5-current
8+
------------------
99
Generally speaking, refactor / magic is in the process of being stripped
1010
out in the next few releases. The API is subject to change significantly
1111
in pre-1.0 builds.
1212

13-
0.4.3 <2020-08-01>
14-
------------------
13+
libvcs 0.4.3 (2020-08-01)
14+
-------------------------
1515
- [bug] :func:`libvcs.git.extract_status()` Fix issue capturing branch names
1616
with special characters
1717

18-
0.4.2 <2020-08-01>
19-
------------------
18+
libvcs 0.4.2 (2020-08-01)
19+
-------------------------
2020
- [bug] :meth:`libvcs.git.GitRepo.get_current_remote_name()` Handle case where
2121
upstream is unpushed
2222
- [feature] :meth:`libvcs.git.GitRepo.status()` - Retrieve status of repo
2323
- [feature] :func:`libvcs.git.extract_status()` - Return structured info from
2424
``git status``
2525

26-
0.4.1 <2020-08-01>
27-
------------------
26+
libvcs 0.4.1 (2020-08-01)
27+
-------------------------
2828
- Remove log statement
2929

30-
0.4 <2020-08-01>
31-
----------------
30+
libvcs 0.4 (2020-08-01)
31+
-----------------------
3232

3333
**Breaking changes**
3434

@@ -61,7 +61,7 @@ implicit behavior.
6161
- Now returns :meth:`~libvcs.git.GitRemote` (a :py:class:`collections.namedtuple` object)
6262

6363
The tuple is similar to the old output, except there is an additional value at
64-
the beginning, the name of the remote, e.g. ``('origin', '<fetch_url>', '<push_url>')``
64+
the beginning, the name of the remote, e.g. ``('origin', '(fetch_url)', '(push_url)')``
6565

6666
- :meth:`libvcs.git.GitRepo.remotes()` (formerly ``remotes_get``) are now methods
6767
instead of properties.
@@ -71,40 +71,40 @@ implicit behavior.
7171
- New method: :meth:`libvcs.git.GitRepo.get_current_remote_name()`
7272

7373

74-
0.3.3 <2020-07-29>
75-
------------------
74+
libvcs 0.3.3 (2020-07-29)
75+
-------------------------
7676
- Remove f-string from test
7777
- :meth:`libvcs.git.GitRepo.obtain` Overwrite remote if exists
7878

79-
0.3.2 <2020-07-26>
80-
------------------
79+
libvcs 0.3.2 (2020-07-26)
80+
-------------------------
8181
- :issue:`258` :meth:`libvcs.git.GitRepo.remote_set`
8282

8383
- Fix updating of remote URLs
8484
- Add new param: ``overwrite``, usage: ``repo.remote_set(url, 'origin', overwrite=True)``
8585

86-
0.3.1post1 <2020-07-26>
87-
-----------------------
86+
libvcs 0.3.1post1 (2020-07-26)
87+
------------------------------
8888
- Fix version in pyroject.toml
8989
- Update developer docs
9090

91-
0.3.1 <2020-07-25>
92-
------------------
91+
libvcs 0.3.1 (2020-07-25)
92+
-------------------------
9393
- Fix issue with subprocess.Popen loud warning on Python 3.8
9494
- :issue:`296` - Move from Pipfile to poetry
9595
- Sort imports
9696
- Add isort package, isort configuration in setup.cfg, and
9797
``make isort`` task to Makefile.
9898
- Add ``project_urls`` to setup.py
9999

100-
0.3.0 <2018-03-12>
101-
------------------
100+
libvcs 0.3.0 (2018-03-12)
101+
-------------------------
102102
- Move vcspull to the vcs-python organization
103103
- Fix issue where VCS objects failed to set attribute in Ubuntu
104104
18.04.
105105

106-
0.2.3 <2016-12-22>
107-
------------------
106+
libvcs 0.2.3 (2016-12-22)
107+
-------------------------
108108
- Update documentation to point to libvcs.git-pull.com
109109
- Switch doc theme to alabaster
110110
- Pin and update libraries via pyup
@@ -115,36 +115,36 @@ implicit behavior.
115115
- pin alabaster to 0.7.9
116116
- pin sphinx to 1.5.1
117117

118-
0.2.2 <2016-11-23>
119-
------------------
118+
libvcs 0.2.2 (2016-11-23)
119+
-------------------------
120120
- Fix bug with unused ``support`` module in vcspull. See `#43`_
121121

122-
0.2.1 <2016-09-13>
123-
------------------
122+
libvcs 0.2.1 (2016-09-13)
123+
-------------------------
124124
- Update pytest to 3.0.2, remove unused pytest-raisesregexp
125125
dependency.
126126
- Fix bug in ``which`` when executable is not found. Allow
127127
specifying search paths manually.
128128
- Better support for missing VCS when testing on git and
129129
subversion.
130130

131-
0.2.0 <2016-06-24>
132-
------------------
131+
libvcs 0.2.0 (2016-06-24)
132+
-------------------------
133133
- :issue:`9` Support for ``progress_callback`` to use realtime output
134134
from commands in progress (such as ``git fetch``).
135135
- :issue:`9` More tests, internal factoring and documentation, thanks
136136
@jcfr
137137
- :issue:`9` Official support for pypy, pypy3
138138
- :issue:`11` : Fix unbound local when updating git repos
139139

140-
0.1.7 <2016-06-21>
141-
------------------
140+
libvcs 0.1.7 (2016-06-21)
141+
-------------------------
142142
- :issue:`7` Add ``check_returncode`` property to run, thanks @jcfr
143143
- :issue:`8` Remove all cases of ``run_buffered`` / buffering from
144144
the library.
145145

146-
0.1.6 <2016-06-21>
147-
------------------
146+
libvcs 0.1.6 (2016-06-21)
147+
-------------------------
148148
- :issue:`5` Remove colorama dependency
149149
- :issue:`6` Remove log module. Logging defaults.
150150

@@ -178,33 +178,33 @@ implicit behavior.
178178
vcslogger.addHandler(repo_channel)
179179
vcslogger.setLevel(level)
180180

181-
0.1.5 <2016-06-21>
182-
------------------
181+
libvcs 0.1.5 (2016-06-21)
182+
-------------------------
183183
- Fix issue where repo context wouldn't pass to repo logging
184184
adapter
185185

186-
0.1.4 <2016-06-20>
187-
------------------
186+
libvcs 0.1.4 (2016-06-20)
187+
-------------------------
188188
- Fix print_stdout_on_progress_end signature in git update
189189

190-
0.1.3 <2016-06-20>
191-
------------------
190+
libvcs 0.1.3 (2016-06-20)
191+
-------------------------
192192
- ``create_repo`` function for regular vcs urls
193193
- API docs updated
194194

195-
0.1.2 <2016-06-20>
196-
------------------
195+
libvcs 0.1.2 (2016-06-20)
196+
-------------------------
197197
- change signature on ``create_repo_from_pip_url`` to accept
198198
``pip_url`` insetad of ``url``.
199199
- ``Base`` to accept ``repo_dir`` instead of ``name`` and
200200
``parent_dir``.
201201

202-
0.1.1 <2016-06-20>
203-
------------------
202+
libvcs 0.1.1 (2016-06-20)
203+
-------------------------
204204
- remove unneeded pyyaml, kaptan and click dependencies
205205

206-
0.1.0 <2016-06-20>
207-
------------------
206+
libvcs 0.1.0 (2016-06-20)
207+
-------------------------
208208
- libvcs split from `vcspull`_
209209

210210
.. _vcspull: https://github.com/vcs-python/vcspull

0 commit comments

Comments
 (0)