Skip to content

Commit

Permalink
Prepare release v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorfs committed Sep 12, 2021
1 parent 90153f1 commit 1282550
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Parsifal 2.1 (2021-09-12)
=========================

Features
--------

- Add new invite co-author feature (#40)


Parsifal 2.0.5 (2021-09-10)
===========================

Expand Down
2 changes: 1 addition & 1 deletion parsifal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from parsifal.utils.version import get_version

VERSION = (2, 1, 0, "alpha", 0)
VERSION = (2, 1, 0, "final", 0)

__version__ = get_version(VERSION)
1 change: 0 additions & 1 deletion parsifal/newsfragments/40.feature

This file was deleted.

2 changes: 1 addition & 1 deletion parsifal/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
environment=PARSIFAL_ENVIRONMENT,
release=PARSIFAL_RELEASE,
integrations=[DjangoIntegration()],
traces_sample_rate=0.01,
traces_sample_rate=0.05,
send_default_pii=True,
)
10 changes: 8 additions & 2 deletions parsifal/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,18 @@

{% if sentry_dsn %}
<!-- Sentry -->
<script src="https://browser.sentry-cdn.com/6.12.0/bundle.min.js" integrity="sha384-S3qfdh3AsT1UN84WIYNuOX9vVOoFg3nB17Jp5/pTFGDBGBt+dtz7MGAV845efkZr" crossorigin="anonymous"></script>
<script
src="https://browser.sentry-cdn.com/6.12.0/bundle.tracing.min.js"
integrity="sha384-rw3H9WWu9WpZYuqFa9AinpFrirprH4iUuo0HWGP2cjf0wZIa4wH+Wbo4vjkaH+bX"
crossorigin="anonymous"
></script>
<script>
Sentry.init({
dsn: "{{ sentry_dsn }}",
release: "{{ parsifal_release }}",
environment: "{{ parsifal_environment }}"
environment: "{{ parsifal_environment }}",
integrations: [new Sentry.Integrations.BrowserTracing()],
tracesSampleRate: 0.05
});
</script>
{% endif %}
Expand Down
1 change: 0 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ python-docx==0.8.11
pytz==2021.1
beautifulsoup4==4.9.3
xlwt==1.3.0
towncrier==21.3.0
1 change: 1 addition & 0 deletions requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
django-debug-toolbar==3.2.2
git+git://github.com/jazzband/django-silk.git#egg=django-silk
ipython==7.27.0
towncrier==21.3.0

0 comments on commit 1282550

Please sign in to comment.