Browse Source

sentry -> django-sentry

David Cramer 13 years ago
parent
commit
e769c9d637
5 changed files with 10 additions and 10 deletions
  1. 1 1
      LICENSE
  2. 2 2
      README.rst
  3. 1 1
      docs/conf.py
  4. 4 4
      docs/install/index.rst
  5. 2 2
      setup.py

+ 1 - 1
LICENSE

@@ -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.

+ 2 - 2
README.rst

@@ -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>`_

+ 1 - 1
docs/conf.py

@@ -50,7 +50,7 @@ copyright = u'2011, David Cramer'
 #
 # 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
 

+ 4 - 4
docs/install/index.rst

@@ -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:
 
@@ -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
 -------------------------------------------

+ 2 - 2
setup.py

@@ -53,8 +53,8 @@ if sys.version_info[:2] < (2, 5):
     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',