Skip to content

Commit

Permalink
sentry -> django-sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 28, 2011
1 parent b274df8 commit e769c9d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Redistribution and use in source and binary forms, with or without modification,

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the django-sentry nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
3. Neither the name of the Sentry nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Links
-----

* `Documentation <http://readthedocs.org/docs/sentry/en/latest/index.html>`_
* `Bug Tracker <http://github.com/dcramer/django-sentry/issues>`_
* `Code <http://github.com/dcramer/django-sentry>`_
* `Bug Tracker <http://github.com/dcramer/sentry/issues>`_
* `Code <http://github.com/dcramer/sentry>`_
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#
# The short X.Y version.

version = __import__('pkg_resources').get_distribution('django-sentry').version
version = __import__('pkg_resources').get_distribution('sentry').version
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
8 changes: 4 additions & 4 deletions docs/install/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Install

If you haven't already, start by downloading Sentry. The easiest way is with *pip*::

pip install django-sentry --upgrade
pip install sentry --upgrade

Or with *setuptools*::

easy_install -U django-sentry
easy_install -U sentry

You now have two choices:

Expand All @@ -30,8 +30,8 @@ If you are upgrading Sentry from a 1.x version, you should take note that the da
are much more significant than they were in the past. We recommend performing them **before**
upgrading the actual Sentry server.

As an example, all existing events need to be migrated to the new project structure. This means
that every event gets backfilled with the new "default" project once it's created.
This includes several new tables (such as Project), and alters on almost all existing tables. It
also means it needs to backfill the project_id column on all related tables.

Integrating with an existing Django install
-------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
install_requires.append('uuid')

setup(
name='django-sentry',
version='2.0.0',
name='sentry',
version='2.0.0-Alpha1',
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://github.com/dcramer/sentry',
Expand Down

0 comments on commit e769c9d

Please sign in to comment.