Skip to content

Commit

Permalink
prepare 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Mar 16, 2019
1 parent 5531671 commit c455ad5
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions .hgtags
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6f8c2817c8cc4a4d5f9ef050bb8a834805d15199 0.1.4
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.


0.1.4
------
2019-03-16

- Clean up. Add proper docs.

0.1.3
------
2019-03-14
Expand Down
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.


0.1.4
------
2019-03-16

- Clean up. Add proper docs.

0.1.3
------
2019-03-14
Expand Down
9 changes: 8 additions & 1 deletion scrapy_mongoengine_item/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
"""
Scrapy extension to write scraped items using `mongoengine` documents
"""
import copy
from six import with_metaclass
from mongoengine.errors import ValidationError
from scrapy.item import Field, Item, ItemMeta


__title__ = 'scrapy-mongoengine-item'
__version__ = '0.1.4'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'MongoEngineItem',
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='scrapy-mongoengine-item',
version='0.1.3',
version='0.1.4',
url='https://github.com/barseghyanartur/scrapy-mongoitem',
description='Scrapy extension to write scraped items using MongoEngine '
'documents',
Expand Down
File renamed without changes.

0 comments on commit c455ad5

Please sign in to comment.