Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Minor release version bump
Browse files Browse the repository at this point in the history
contains bug fix for non returning generator
  • Loading branch information
accraze committed Jan 7, 2016
1 parent 628ffb3 commit 5b88e42
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pymjq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Creates a queue, iterates through docs and waits when queue is empty."""
"""Creates a queue, adds and iterates through docs and waits when queue is empty."""

__version__ = '1.0.2'
__version__ = '1.1.0'
__url__ = 'https://github.com/discogs/pymongo-job-queue'
__author__ = 'Andy Craze'
__email__ = 'acraze@discogsinc.com'
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
from codecs import open # To use a consistent encoding
from os import path

here = path.abspath(path.dirname(__file__))
# here = path.abspath(path.dirname(__file__))

# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# # Get the long description from the relevant file
# with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
# long_description = f.read()

setup(
name = 'pymjq',
packages = ['pymjq'], # this must be the same as the name above
version = '1.0.2',
version = '1.1.0',
description = 'Simple MongoDB based job queue',
long_description=long_description,
# long_description=long_description,
license = 'MIT',
author = 'Andy Craze',
author_email = 'acraze@discogsinc.com',
url = 'https://github.com/discogs/pymongo-job-queue', # use the URL to the github repo
download_url = 'https://github.com/discogs/pymongo-job-queue/tarball/1.0.1',
download_url = 'https://github.com/discogs/pymongo-job-queue/tarball/1.1.0',
keywords = ['queue', 'pymongo', 'mongodb', 'job', 'async', 'worker', 'tail'], # arbitrary keywords
classifiers = [
# Indicate who the project is intended for
Expand Down

0 comments on commit 5b88e42

Please sign in to comment.