Skip to content

Commit

Permalink
version: 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
exesse committed Jul 14, 2021
1 parent 5d750e3 commit 7134097
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04

LABEL version="1.1.0" author="Vladislav I. Kulbatski" email="hi@exesse.org"
LABEL version="1.1.1" author="Vladislav I. Kulbatski" email="hi@exesse.org"

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.1.0
RUN python3 -m pip install mongodump-s3==1.1.1

ENTRYPOINT ["mongodump-s3"]
ENTRYPOINT ["mongodump-s3"]
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name="mongodump-s3",
version="1.1.0",
version="1.1.1",
description="Backup utility for MongoDB. "
"Compatible with Azure, Amazon Web Services and Google Cloud Platform.",
long_description=README,
Expand All @@ -27,12 +27,12 @@
packages=["mongodump_s3"],
include_package_data=False,
install_requires=[
"requests==2.25.1",
"requests>=2.26.0",
"hurry.filesize==0.9",
"python-dotenv==0.15.0",
"azure-storage-blob==12.7.1",
"boto3==1.16.63",
"google-cloud-storage==1.35.0"
"python-dotenv>=0.18.0",
"azure-storage-blob>=12.8.1",
"boto3>=1.17.111",
"google-cloud-storage>=1.41.0"
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 7134097

Please sign in to comment.