Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
exesse committed Jan 7, 2021
1 parent cbc0f78 commit 15a6b47
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04

LABEL version="1.0.3" author="Vladislav I. Kulbatski" email="[email protected]"
LABEL version="1.1.0" author="Vladislav I. Kulbatski" email="[email protected]"

WORKDIR /mongo-dump

Expand All @@ -9,6 +9,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends\
mongo-tools=3.6.3-0ubuntu1\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install mongodump-s3==1.0.3
RUN python3 -m pip install mongodump-s3==1.1.0

ENTRYPOINT ["mongodump_s3"]
2 changes: 1 addition & 1 deletion mongodump_s3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
from .dump import MongoDump
from .notifications import Notifications

__version__ = '1.0.3'
__version__ = '1.1.0'
__author__ = 'Vladislav I. Kulbatski'
__all__ = ['MongoDump', 'S3', 'Notifications', '__version__']
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
# This call to setup() does all the work
setup(
name="mongodump-s3",
version="1.0.3",
description="Read the latest Real Python tutorials",
version="1.1.0",
description="Backup utility for MongoDB. "
"Compatible with Azure, Amazon Web Services and Google Cloud Platform.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/exesse/mongodump-s3",
Expand All @@ -30,7 +31,7 @@
"hurry.filesize==0.9",
"python-dotenv==0.15.0",
"azure-storage-blob==12.6.0",
"boto3==1.16.48",
"boto3==1.16.50",
"google-cloud-storage==1.35.0"
],
entry_points={
Expand Down

0 comments on commit 15a6b47

Please sign in to comment.