Skip to content

Commit 15bce9c

Browse files
committed
Get ready for release 1.8.9
1 parent 016d403 commit 15bce9c

File tree

4 files changed

+9
-17
lines changed

4 files changed

+9
-17
lines changed

NEWS.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
1.8.9 2018-07-28 S
2+
======================================
3+
4+
- 3.8 change needed in Python 3.7.4
5+
16
1.8.8 2018-07-28 Survived another year
27
======================================
38

4-
- Changes for Python 3.7.4 and 3.8
9+
- Changes for Python 3.8
510

611
1.8.7 2018-05-18 Paper Tiger
712
============================

admin-tools/how-to-make-a-release.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
22
**Table of Contents**
33

4-
- [Merge 2.4 branch](#merge-24)
54
- [Change version in spark_parser/version.py. Then:](#change-version-in-sparkparserversionpy-then)
65
- [Update ChangeLog:](#update-changelog)
76
- [Update NEWS from ChangeLog. Then:](#update-news-from-changelog-then)
@@ -16,18 +15,6 @@
1615
- [Check on a VM](#check-on-a-vm)
1716

1817
<!-- markdown-toc end -->
19-
# Merge 2.4 branch
20-
21-
$ . ./admin-tools/setup-python-2.4.sh
22-
$ git merge
23-
24-
Resolve conflicts
25-
26-
$ make check
27-
$ git commit
28-
$ git push
29-
$ . ./admin-tools/setup-master.sh
30-
3118
# Change version in spark_parser/version.py. Then:
3219

3320
$ emacs spark_parser/version.py

spark_parser/ast.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

33
PYTHON3 = (sys.version_info >= (3, 0))
4-
PYTHON38 = (sys.version_info >= (3, 8))
4+
PYTHON37 = (sys.version_info >= (3, 7))
55

66
if PYTHON3:
77
intern = sys.intern
@@ -18,7 +18,7 @@ def __init__(self, kind, kids=[]):
1818
def __getslice__(self, low, high):
1919
return self.data[low:high]
2020

21-
if PYTHON38:
21+
if PYTHON37:
2222
def __getitem__(self, i):
2323
return self.data[i]
2424

spark_parser/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is suitable for sourcing inside bash as
22
# well as importing into Python
3-
VERSION='1.8.8'
3+
VERSION='1.8.9'

0 commit comments

Comments
 (0)