Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.0 #21

Merged
merged 2 commits into from
Sep 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# Change Log

## [v2.0.0](https://github.com/dallinger/dallinger/tree/v2.0.0) (2016-09-07)

Dallinger 2.0.0 is the first release of Dallinger, which performs laboratory automation for the behavioral and social sciences.

**Breaking changes:**

The software is now called *Dallinger*. This rebranding is a breaking change that affects the name of the command-line utility (`dallinger`); the name of the Python module (`dallinger`); and the name of the configuration file (`.dallingerconfig`).

- Rebrand as "Dallinger" [\#2](https://github.com/Dallinger/Dallinger/pull/2) ([suchow](https://github.com/suchow))

**Enhancements:**

- Deploy to PyPi automatically [\#13](https://github.com/Dallinger/Dallinger/issues/13)
- Improve documentation styling [\#5](https://github.com/Dallinger/Dallinger/issues/5)
- Set up a release process [\#18](https://github.com/Dallinger/Dallinger/pull/18) ([suchow](https://github.com/suchow))
- Speed up Travis CI runs [\#15](https://github.com/Dallinger/Dallinger/pull/15) ([suchow](https://github.com/suchow))
- Deploy to PyPi test server [\#14](https://github.com/Dallinger/Dallinger/pull/14) ([suchow](https://github.com/suchow))
- Check PRs with Danger [\#10](https://github.com/Dallinger/Dallinger/pull/10) ([suchow](https://github.com/suchow))
- Improve documentation styling [\#7](https://github.com/Dallinger/Dallinger/pull/7) ([suchow](https://github.com/suchow))
- Add Codecov settings file [\#4](https://github.com/Dallinger/Dallinger/pull/4) ([suchow](https://github.com/suchow))
- Use Codecov, not Coveralls [\#3](https://github.com/Dallinger/Dallinger/pull/3) ([suchow](https://github.com/suchow))

**Bug fixes:**

- Fix README license badge [\#19](https://github.com/Dallinger/Dallinger/pull/19) ([suchow](https://github.com/suchow))
- Version bump doc config file [\#16](https://github.com/Dallinger/Dallinger/pull/16) ([suchow](https://github.com/suchow))
- Fix a few more rebranding issues [\#9](https://github.com/Dallinger/Dallinger/pull/9) ([suchow](https://github.com/suchow))
- Don't check for broken links when building docs [\#8](https://github.com/Dallinger/Dallinger/pull/8) ([suchow](https://github.com/suchow))
- Fix a branding bug [\#6](https://github.com/Dallinger/Dallinger/pull/6) ([suchow](https://github.com/suchow))

## [v1.0.0](https://github.com/berkeley-cocosci/Wallace/tree/v1.0.0) (2016-09-02)

Before Dallinger, there was [Wallace](https://github.com/berkeley-cocosci/Wallace), a platform for automating experiments on cultural transmission through crowdsourcing. Wallace was funded, in part, by the National Science Foundation (grant 1456709 to T.L.G).
2 changes: 1 addition & 1 deletion dallinger/heroku/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-e git+https://github.com/Dallinger/Dallinger.git@v1.0.0#egg=dallinger
-e git+https://github.com/Dallinger/Dallinger.git@v2.0.0#egg=dallinger
APScheduler==3.0.5
click==3.3
coverage==3.7.1
Expand Down
2 changes: 1 addition & 1 deletion dallinger/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Dallinger version number."""

__version__ = "1.0.0"
__version__ = "2.0.0"
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.0.0'
version = u'2.0.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.0'
release = u'2.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -162,7 +162,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'Dallinger v1.0.0'
# html_title = u'Dallinger v2.0.0'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
2 changes: 1 addition & 1 deletion examples/bartlett1932/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dallinger == 1.0.0
dallinger == 2.0.0
2 changes: 1 addition & 1 deletion examples/chatroom/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dallinger == 1.0.0
dallinger == 2.0.0
2 changes: 1 addition & 1 deletion examples/function-learning/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dallinger == 1.0.0
dallinger == 2.0.0
2 changes: 1 addition & 1 deletion examples/mcmcp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dallinger == 1.0.0
dallinger == 2.0.0
2 changes: 1 addition & 1 deletion examples/rogers/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dallinger == 1.0.0
dallinger == 2.0.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 2.0.0
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup_args = dict(
name='dallinger',
packages=['dallinger'],
version="1.0.0",
version="2.0.0",
description='Laboratory automation for the behavioral and social sciences',
long_description=long_description,
url='http://github.com/Dallinger/Dallinger',
Expand Down