Skip to content

Commit

Permalink
Major Release **v1.0.0-rc.1**.
Browse files Browse the repository at this point in the history
This is the first release candidate for v1 of Archivy. It's been a lot
of work since archivy's beginnings in August. The project has grown
enormously and I'm very happy with what Archivy has become.

We've seen major improvements in the design, structure and feature set
of the project and I'm extremely excited for the future of
Archivy, outlined [in the roadmap](#74 (comment)).

Please report any bugs or issues you encounter, and once we've made sure
everything is stable, we'll deploy v1.0!!!

Thank you to all the contributors who have shaped this project, and as
always, don't hesitate to share, discuss and develop with us, through
our [discord server](https://discord.gg/uQsqyxB) and [our
issues](https://github.com/archivy/archivy/issues).
  • Loading branch information
Uzay-G committed Jan 22, 2021
1 parent 71048ba commit 65d7bc2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build-docker-on-release.yml
Expand Up @@ -9,7 +9,6 @@ jobs:
dockerBuildPush:
name: Build and push image with release version tag
runs-on: ubuntu-latest
needs: [ContainerTestAndScan]
steps:
- name: Checkout files from repository
uses: actions/checkout@v2
Expand All @@ -22,8 +21,6 @@ jobs:
date -u +'%Y-%m-%dT%H:%M:%SZ' > TIMESTAMP
echo "${GITHUB_SHA}" | cut -c1-8 > SHORT_SHA
echo "${GITHUB_REF/refs\/tags\//}" > VERSION
echo "${GITHUB_REF/refs\/tags\//}" | awk -F'.' '{print $1}' > MAJOR_VERSION
echo "${GITHUB_REF/refs\/tags\//}" | awk -F'.' '{print $2}' > MINOR_VERSION
echo "uzayg" > DOCKER_USERNAME
echo "docker.io/uzayg/archivy" > DOCKER_IMAGE
Expand Down Expand Up @@ -58,8 +55,4 @@ jobs:
--build-arg VERSION="$( cat VERSION )" --build-arg BUILD_DATE="$( cat TIMESTAMP )" \
--build-arg VCS_REF="$( cat SHORT_SHA )" \
--tag "$( cat DOCKER_IMAGE ):$( cat VERSION )" \
--tag "$( cat DOCKER_IMAGE ):$( cat MAJOR_VERSION ).$( cat MINOR_VERSION )" \
--tag "$( cat DOCKER_IMAGE ):$( cat SHORT_SHA )" \
--tag "$( cat DOCKER_IMAGE ):stable" \
--tag "$( cat DOCKER_IMAGE ):latest" \
--file ./Dockerfile .
2 changes: 1 addition & 1 deletion .github/workflows/pypi-auto-deploy.yml
Expand Up @@ -3,7 +3,7 @@ name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI and create Git
on:
push:
# remove branchname otherwise github actions will trigger event regardless of tag.
tags: v[0-9]+.[0-9]+.[0-9]+
tags: v[0-9]+.[0-9]+.[0-9]+*

jobs:
builds-n-publish:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="archivy",
version="0.11.1",
version="1.0.0-rc.1",
author="Uzay-G",
author_email="uzgirit@gmail.com",
description=(
Expand Down

0 comments on commit 65d7bc2

Please sign in to comment.