Skip to content

Commit

Permalink
build(CHANGES): Fix headers to show proper RST ids (for internal anch…
Browse files Browse the repository at this point in the history
…ors)

cat CHANGES | sed s/"<"/"\("/g | sed s/">"/"\)"/g | \
    sed 's/^0\..*/libvcs &/g' | sed 's/^--/&-------/g'
  • Loading branch information
tony committed Aug 5, 2020
1 parent 0c22fe1 commit f5f075b
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@ Changelog

Here are the changes for libvcs.

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

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

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

0.4.1 <2020-08-01>
------------------
libvcs 0.4.1 (2020-08-01)
-------------------------
- Remove log statement

0.4 <2020-08-01>
----------------
libvcs 0.4 (2020-08-01)
-----------------------

**Breaking changes**

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

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

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


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

0.3.2 <2020-07-26>
------------------
libvcs 0.3.2 (2020-07-26)
-------------------------
- :issue:`258` :meth:`libvcs.git.GitRepo.remote_set`

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

0.3.1post1 <2020-07-26>
-----------------------
libvcs 0.3.1post1 (2020-07-26)
------------------------------
- Fix version in pyroject.toml
- Update developer docs

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

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

0.2.3 <2016-12-22>
------------------
libvcs 0.2.3 (2016-12-22)
-------------------------
- Update documentation to point to libvcs.git-pull.com
- Switch doc theme to alabaster
- Pin and update libraries via pyup
Expand All @@ -115,36 +115,36 @@ implicit behavior.
- pin alabaster to 0.7.9
- pin sphinx to 1.5.1

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

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

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

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

0.1.6 <2016-06-21>
------------------
libvcs 0.1.6 (2016-06-21)
-------------------------
- :issue:`5` Remove colorama dependency
- :issue:`6` Remove log module. Logging defaults.

Expand Down Expand Up @@ -178,33 +178,33 @@ implicit behavior.
vcslogger.addHandler(repo_channel)
vcslogger.setLevel(level)

0.1.5 <2016-06-21>
------------------
libvcs 0.1.5 (2016-06-21)
-------------------------
- Fix issue where repo context wouldn't pass to repo logging
adapter

0.1.4 <2016-06-20>
------------------
libvcs 0.1.4 (2016-06-20)
-------------------------
- Fix print_stdout_on_progress_end signature in git update

0.1.3 <2016-06-20>
------------------
libvcs 0.1.3 (2016-06-20)
-------------------------
- ``create_repo`` function for regular vcs urls
- API docs updated

0.1.2 <2016-06-20>
------------------
libvcs 0.1.2 (2016-06-20)
-------------------------
- change signature on ``create_repo_from_pip_url`` to accept
``pip_url`` insetad of ``url``.
- ``Base`` to accept ``repo_dir`` instead of ``name`` and
``parent_dir``.

0.1.1 <2016-06-20>
------------------
libvcs 0.1.1 (2016-06-20)
-------------------------
- remove unneeded pyyaml, kaptan and click dependencies

0.1.0 <2016-06-20>
------------------
libvcs 0.1.0 (2016-06-20)
-------------------------
- libvcs split from `vcspull`_

.. _vcspull: https://github.com/vcs-python/vcspull
Expand Down

0 comments on commit f5f075b

Please sign in to comment.