Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed May 16, 2024
1 parent 7a2a70b commit e0f9095
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
<!-- SPDX-FileCopyrightText: 2024 FC (Fay) Stegerman <flx@obfusk.net> -->
<!-- SPDX-License-Identifier: AGPL-3.0-or-later -->

<!--
[![GitHub Release](https://img.shields.io/github/release/obfusk/apkrepotool.svg?logo=github)](https://github.com/obfusk/apkrepotool/releases)
[![PyPI Version](https://img.shields.io/pypi/v/apkrepotool.svg)](https://pypi.python.org/pypi/apkrepotool)
[![Python Versions](https://img.shields.io/pypi/pyversions/apkrepotool.svg)](https://pypi.python.org/pypi/apkrepotool)
[![CI](https://github.com/obfusk/apkrepotool/actions/workflows/ci.yml/badge.svg)](https://github.com/obfusk/apkrepotool/actions/workflows/ci.yml)
[![AGPLv3+](https://img.shields.io/badge/license-AGPLv3+-blue.svg)](https://www.gnu.org/licenses/agpl-3.0.html)

-->

<p align="center">
<img src="icon.svg" alt="apkrepotool logo" width="160" />
</p>
Expand Down Expand Up @@ -223,16 +219,12 @@ CurrentVersionCode: 134
## Installing
<!--
### Using pip
```bash
$ pip install apkrepotool
```

-->

### From git

NB: this installs the latest development version, not the latest release.
Expand Down
4 changes: 2 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.1.0
## v0.0.1

* [x] `index-v1.json`
* [x] `index-v2.json`
Expand All @@ -17,7 +17,7 @@
* [x] more metadata (license, links, ...)
* [x] AntiFeatures
* [x] proper `repro-apk` `binres` release & dependency
* [ ] README
* [x] README

## next

Expand Down
2 changes: 1 addition & 1 deletion apkrepotool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

from ruamel.yaml import YAML

__version__ = "0.0.0"
__version__ = "0.0.1"
NAME = "apkrepotool"

if os.environ.get("APKREPOTOOL_DIR"):
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
v0.0.1

• first alpha release with minimum functionality for a simple repo.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path
import setuptools

__version__ = "0.0.0"
__version__ = "0.0.1"

info = Path(__file__).with_name("README.md").read_text(encoding="utf8")

Expand Down

0 comments on commit e0f9095

Please sign in to comment.