diff --git a/.drone.yml b/.drone.yml index eb7cbf1..fae23e4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,11 +5,11 @@ name: build and publish steps: - name: build - image: registry.kucharczyk.tech/python-pypi + image: registry.kucharczyk.xyz/python-pypi commands: - python -m build - name: publish - image: registry.kucharczyk.tech/python-pypi + image: registry.kucharczyk.xyz/python-pypi commands: - python -m twine upload -u $USERNAME -p $PASSWORD dist/* environment: diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..31cd979 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,14 @@ +# Changelog + +## [0.2.0] - 2022-04-07 + +- added the `--input-directory` and `--output-file` arguments + +## [0.1.0] - 2022-03-01 + +Initial release. +This first version works but comes with limitations making it unusable for but a single purpose: + +- input files and output CSV file is hardcoded +- field names are hardcoded +- field transformations are hardcoded \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index ca71093..14138e8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = frontmatter-to-csv -version = 0.1.0 +version = 0.2.0 author = Lukáš Kucharczyk author_email = lukas@kucharczyk.xyz description = Convert YAML front matter to CSV