Skip to content

Commit

Permalink
increase version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arneb committed Jan 29, 2021
1 parent be28331 commit de9a6c3
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 6 deletions.
30 changes: 30 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog
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).

## [Unreleased]

## [0.5.0] - 2021-01-29
### Added
- Validation of SubscriberList filter condition
- Validation of SubscriberList email field name
- Preview of SubscriberList recipients
- Basic skeleton for a test suite

## [0.4.1] - 2019-05-21
### Fixed
- Fix a packaging problem

## [0.4.0] - 2019-05-21 [YANKED]
### Added
- Management command to fetch bounces from Mailgun
- Introduced a "send_campaign" permission
- Support for Python 3

### Changed
- Compatiblity for more Django versions
- Use DISTINCT in subscriber query

## Start of Changelog
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2009-2014, Arne Brodowski
Copyright (c) 2009-2021, Arne Brodowski
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
include AUTHORS
include LICENSE
include README.rst
include CHANGES.md
include tox.ini
recursive-include docs *
recursive-include tests *
recursive-include campaign/templates *
2 changes: 1 addition & 1 deletion campaign/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.4.1'
__version__ = '0.5.0'

default_app_config = 'campaign.apps.CampaignConfig'
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
license="BSD",
url='https://github.com/arneb/django-campaign/',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand All @@ -21,13 +21,18 @@
packages = (
'campaign',
'campaign.backends',
'campaign.migrations',
'campaign.management',
'campaign.management.commands',
'campaign.migrations',
'campaign.templatetags',
),
package_data = {
'campaign':
['templates/admin/campaign/campaign/*.html',
'templates/campaign/*.html'],
[
'templates/admin/campaign/blacklistentry/*.html',
'templates/admin/campaign/campaign/*.html',
'templates/admin/campaign/subscriberlist/*.html',
'templates/campaign/*.html'
],
}
)

0 comments on commit de9a6c3

Please sign in to comment.