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

Commit 705c39c

Browse files
authored
Merge pull request #462 from sagemath/develop
Version 1.1.1
2 parents ef1df45 + 3458d16 commit 705c39c

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.1.1 November 5 2018
2+
- just of repackaging of 1.1.0 from the same sources
3+
- in particular, remove the bundled mathjax
4+
5+
1.1.0 October 18 2018
6+
- deprecate the Sage Notebook
7+
- build documentation
8+
- various improvements towards Python 3 compatibility
9+
110
1.0.3 June 10 2018
211
- fixed doctests for compatibility with sphinx 1.7.5
312

ReleaseInstr.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ in your local `SAGENB_ROOT`.
2222
cd SAGENB_ROOT
2323
git checkout master
2424
git fetch upstream
25-
git rebase upstream/master
25+
git rebase upstream/master
2626
```
2727

2828
1. Edit `Changes` file to highlight the main changes. Edit `setup.py` to
@@ -39,7 +39,7 @@ in your local `SAGENB_ROOT`.
3939
+ version = '0.10.8.3',
4040
description = 'The Sage Notebook',
4141
license = 'GNU General Public License (GPL) v3+',
42-
author = 'William Stein et al.',
42+
author = 'William Stein et al.',
4343
```
4444
4545
1. Commit the updated version change.
@@ -63,7 +63,7 @@ in your local `SAGENB_ROOT`.
6363
```sh
6464
cd SAGE_ROOT
6565
echo "<version>" > build/pkgs/sagenb/package-version.txt
66-
./sage --fix-pkg-checksums
66+
./sage --package fix-checksum sagenb
6767
./sage -tp --long --sagenb # test sagenb
6868
make ptestlong # test sage
6969
```
@@ -78,7 +78,7 @@ in your local `SAGENB_ROOT`.
7878
7979
1. Check that the documentation is installed in ``$SAGE_LOCAL/share/docs/sagenb``
8080
by e.g. opening with a browser the URL ``file://$SAGE_LOCAL/share/docs/sagenb/index.html``.
81-
81+
8282
1. (Optional) Check that the Selenium tests pass.
8383
8484
1. (Optional) If you encounter errors or realize there was a mistake,

dist.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/usr/bin/env bash
22

3-
# This script creates a new tarball for SageNB.
4-
rm -rf dist
3+
# This script creates a new tarball for SageNB
54

5+
# Remove some auto-generated packaging directories
6+
rm -rf dist sagenb.egg-info
7+
8+
# Ensure that we are packaging from a clean git repo
9+
git clean -i -d -x
10+
11+
# Now actually create the package
612
exec ./setup.py sdist --format=bztar

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def all_files(dir, prefix):
4040

4141

4242
setup(name='sagenb',
43-
version = '1.1.0',
43+
version = '1.1.1',
4444
description = 'The Sage Notebook',
4545
license = 'GNU General Public License (GPL) v3+',
4646
author = 'William Stein et al.',

0 commit comments

Comments
 (0)