You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2020/12/09 14:34:26 UTC

[airflow-site] branch master updated: Release as 0.0.2 (#343)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 712be0d  Release as 0.0.2 (#343)
712be0d is described below

commit 712be0ddddd9ac2b1aa70e205e7450f1b6ce498b
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Wed Dec 9 14:34:17 2020 +0000

    Release as 0.0.2 (#343)
    
    Enough has changed that we should bump the version
---
 .github/workflows/build.yml                           | 4 ++--
 sphinx_airflow_theme/README.md                        | 2 +-
 sphinx_airflow_theme/setup.py                         | 2 +-
 sphinx_airflow_theme/sphinx_airflow_theme/__init__.py | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 051bb38..bf52932 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -108,11 +108,11 @@ jobs:
           github.event_name == 'push'
         run: |
           gh auth status
-          gh release delete v0.0.1 -y || true
+          gh release delete v0.0.2 -y || true
           NOTES="Commit: ${GITHUB_COMMIT}
           Source: ${GITHUB_REF}"
 
-          gh release create v0.0.1 \
+          gh release create v0.0.2 \
             --title "Latest version" \
             --notes "${NOTES}" \
             ./dist/*
diff --git a/sphinx_airflow_theme/README.md b/sphinx_airflow_theme/README.md
index 2340cc8..64ba81b 100644
--- a/sphinx_airflow_theme/README.md
+++ b/sphinx_airflow_theme/README.md
@@ -50,7 +50,7 @@ In order to start working with the theme, please follow the instructions below.
 
 To install the latest development version of a theme, run:
 ```
-pip install 'https://github.com/apache/airflow-site/releases/download/v0.0.1/sphinx_airflow_theme-0.0.1-py3-none-any.whl'
+pip install 'https://github.com/apache/airflow-site/releases/download/v0.0.2/sphinx_airflow_theme-0.0.2-py3-none-any.whl'
 ```
 Python packages for your PRs is available as downloadable artifact in GitHub Actions after
 the CI builds your PR.
diff --git a/sphinx_airflow_theme/setup.py b/sphinx_airflow_theme/setup.py
index 2031c6d..2a15968 100644
--- a/sphinx_airflow_theme/setup.py
+++ b/sphinx_airflow_theme/setup.py
@@ -38,7 +38,7 @@ with open('README.md', encoding='utf-8') as file:
 
 setup(
     name='sphinx_airflow_theme',
-    version='0.0.1',
+    version='0.0.2',
     url='https://github.com/apache/airflow-site/tree/aip-11',
     license='Apache License 2.0',
     author='Apache Software Foundation',
diff --git a/sphinx_airflow_theme/sphinx_airflow_theme/__init__.py b/sphinx_airflow_theme/sphinx_airflow_theme/__init__.py
index 5630a7e..e1189a1 100644
--- a/sphinx_airflow_theme/sphinx_airflow_theme/__init__.py
+++ b/sphinx_airflow_theme/sphinx_airflow_theme/__init__.py
@@ -18,7 +18,7 @@
 from os import path
 from sphinx.application import Sphinx
 
-__version__ = '0.0.1'
+__version__ = '0.0.2'
 __version_full__ = __version__