Skip to content

Commit

Permalink
Implement a bug fix on honoring deleted tags
Browse files Browse the repository at this point in the history
Release beta version
  • Loading branch information
dormant-user committed Sep 26, 2023
1 parent b97b5b7 commit cee6088
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 4 deletions.
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Commit History
==============

0.4.7 (09/25/2023)
------------------
- Implement a bug fix on honoring deleted tags
- Release beta version

0.4.6 (09/25/2023)
------------------
- Get releases to honor deleted tags
Expand Down
2 changes: 1 addition & 1 deletion docs/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h3>Navigation</h3>
<a class="reference external" href="https://api.github.com/repos/thevickypedia/gitverse"><img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/thevickypedia/gitverse" /></a></p>
<section id="gitverse">
<h1>GitVerse<a class="headerlink" href="#gitverse" title="Permalink to this heading"></a></h1>
<p>Get release notes or commit history from <code class="docutils literal notranslate"><span class="pre">GitHub</span></code> and format it into <code class="docutils literal notranslate"><span class="pre">reStructuredText</span></code>/<code class="docutils literal notranslate"><span class="pre">Markdown</span></code> files.</p>
<p>Get GitHub’s release notes or commit history and format it into <code class="docutils literal notranslate"><span class="pre">reStructuredText</span></code>/<code class="docutils literal notranslate"><span class="pre">Markdown</span></code> documents.</p>
<section id="installation">
<h2>Installation<a class="headerlink" href="#installation" title="Permalink to this heading"></a></h2>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>gitverse
Expand Down
2 changes: 1 addition & 1 deletion docs/_sources/README.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[![GitHub last commit](https://img.shields.io/github/last-commit/thevickypedia/gitverse)](https://api.github.com/repos/thevickypedia/gitverse)

# GitVerse
Get release notes or commit history from `GitHub` and format it into `reStructuredText`/`Markdown` files.
Get GitHub's release notes or commit history and format it into `reStructuredText`/`Markdown` documents.

### Installation
```shell
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gitverse/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "2.6a"
version = "2.6b"
1 change: 1 addition & 0 deletions gitverse/releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def run(filename: str, title: str) -> None:
filename: Name of the file that where the release notes has to be stored.
title: Title under which the release notes has to be stored.
"""
run_git_cmd(cmd="git fetch origin refs/tags/*:refs/tags/* --prune")
run_git_cmd(cmd="git pull")
snippets = generate_snippets()
if not snippets:
Expand Down
8 changes: 8 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release Notes
=============

2.6a (09/25/2023)
-----------------
- Get releases to honor deleted tags
- Remove MANIFEST.in
- Add dependencies to requirements.txt
- Release alpha version
- Restructure all dependent .py models

v2.5 (08/30/2023)
-----------------
- Restructure version naming in output files
Expand Down

0 comments on commit cee6088

Please sign in to comment.