Skip to content

Commit

Permalink
fix: broken release
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Mar 5, 2021
1 parent a8f07a7 commit 13fc7b8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changelog for extract-dtb
=========================

1.3 (unreleased)
----------------
1.2.1 (unreleased)
------------------

- Nothing changed yet.
- Fix broken release


1.2 (2021-03-05)
Expand Down
1 change: 1 addition & 0 deletions extract_dtb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .extract_dtb import __version__
2 changes: 2 additions & 0 deletions extract_dtb/extract_dtb.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
import os
import string

__version__ = "1.2.1.dev0"

DTB_HEADER = b"\xd0\x0d\xfe\xed"


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env python
from setuptools import setup
import extract_dtb

version = "1.3.dev0"

version = extract_dtb.__version__

setup(
name="extract-dtb",
packages=["extract_dtb"],
entry_points={"console_scripts": ["extract-dtb = extract_dtb.extract_dtb:main"]},
version=version,
entry_points={"console_scripts": ["extract-dtb = extract_dtb.extract_dtb:main"]},
description="Tool to split a kernel image with appended dtbs into separated kernel and dtb files.",
long_description=open("README.md").read(),
author="Pablo Castellano",
Expand Down

0 comments on commit 13fc7b8

Please sign in to comment.