Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Version 1.1.1 #462

Merged
merged 2 commits into from
Nov 5, 2018
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
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.1.1 November 5 2018
- just of repackaging of 1.1.0 from the same sources
- in particular, remove the bundled mathjax

1.1.0 October 18 2018
- deprecate the Sage Notebook
- build documentation
- various improvements towards Python 3 compatibility

1.0.3 June 10 2018
- fixed doctests for compatibility with sphinx 1.7.5

Expand Down
8 changes: 4 additions & 4 deletions ReleaseInstr.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in your local `SAGENB_ROOT`.
cd SAGENB_ROOT
git checkout master
git fetch upstream
git rebase upstream/master
git rebase upstream/master
```

1. Edit `Changes` file to highlight the main changes. Edit `setup.py` to
Expand All @@ -39,7 +39,7 @@ in your local `SAGENB_ROOT`.
+ version = '0.10.8.3',
description = 'The Sage Notebook',
license = 'GNU General Public License (GPL) v3+',
author = 'William Stein et al.',
author = 'William Stein et al.',
```

1. Commit the updated version change.
Expand All @@ -63,7 +63,7 @@ in your local `SAGENB_ROOT`.
```sh
cd SAGE_ROOT
echo "<version>" > build/pkgs/sagenb/package-version.txt
./sage --fix-pkg-checksums
./sage --package fix-checksum sagenb
./sage -tp --long --sagenb # test sagenb
make ptestlong # test sage
```
Expand All @@ -78,7 +78,7 @@ in your local `SAGENB_ROOT`.

1. Check that the documentation is installed in ``$SAGE_LOCAL/share/docs/sagenb``
by e.g. opening with a browser the URL ``file://$SAGE_LOCAL/share/docs/sagenb/index.html``.

1. (Optional) Check that the Selenium tests pass.

1. (Optional) If you encounter errors or realize there was a mistake,
Expand Down
10 changes: 8 additions & 2 deletions dist.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env bash

# This script creates a new tarball for SageNB.
rm -rf dist
# This script creates a new tarball for SageNB

# Remove some auto-generated packaging directories
rm -rf dist sagenb.egg-info

# Ensure that we are packaging from a clean git repo
git clean -i -d -x

# Now actually create the package
exec ./setup.py sdist --format=bztar
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def all_files(dir, prefix):


setup(name='sagenb',
version = '1.1.0',
version = '1.1.1',
description = 'The Sage Notebook',
license = 'GNU General Public License (GPL) v3+',
author = 'William Stein et al.',
Expand Down