From 340dad37a8f684e3232ddb2004c005e08bc20a05 Mon Sep 17 00:00:00 2001 From: Karthic Kumaran Date: Sat, 16 Apr 2022 14:52:23 +0530 Subject: [PATCH] v0.1.6 - update changelog and setup.py --- CHANGELOG.md | 4 ++++ setup.py | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3549a77..db065e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.6] - 2022-04-16 +- Added option to sync the vault before export +- Added option to export the vault as an unencrypted json file + ## [0.1.5] - 2022-02-07 - Renamed executable to bw2kp when installed via pip or setup.py - Added setup.py diff --git a/setup.py b/setup.py index 4960f6e..8334961 100755 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ from setuptools import setup setup(name="bitwarden-to-keepass", - version="v0.1.5", + version="v0.1.6", description="Convert BitWarden Vault into a KeePass Database (kdbx)", long_description=open('README.md', 'rb').read().decode('utf-8'), long_description_content_type="text/markdown", - author="k3karthic", - author_email="k3.karthic@protonmail.ch", + author="k3karthic, firecat53", + author_email="k3.karthic@protonmail.ch, firecat4153@gmail.com", url="https://github.com/k3karthic/bitwarden-to-keepass", download_url="https://github.com/k3karthic/bitwarden-to-keepass/tarball/v0.1.5", py_modules=["convert"],