Skip to content

Commit 9c228e6

Browse files
authored
πŸš€ RELEASE: v1.2.0 (#82)
1 parent 464dd36 commit 9c228e6

File tree

4 files changed

+98
-63
lines changed

4 files changed

+98
-63
lines changed

β€ŽCHANGELOG.md

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Change Log
2+
3+
## v1.2.0
4+
5+
`sphinx-tabs` has now moved to the [EBP organisation](https://executablebooks.org) πŸŽ‰
6+
7+
### Deprecated πŸ—‘
8+
9+
- Python < 3.5 and Sphinx < 2 support dropped
10+
11+
### Improved πŸ‘Œ
12+
13+
- Lots of code and CI restructuring (see [EBP Migration (#76)](https://github.com/executablebooks/sphinx-tabs/commit/6342ed3f1f7d4cb50891001f26d4e3c4c08ee422))
14+
15+
### Fixed πŸ›
16+
17+
- Replace `add_javascript` by `add_js` for sphinx>=3 (removes warning!),
18+
thanks to [@Daltz333](https://github.com/Daltz333)
19+
20+
## v1.1.13
21+
22+
- Marked the extension as parallel safe (#46)
23+
24+
## v1.1.12
25+
26+
- Fix bug in Internet Explorer (#33)
27+
- Drop support for Python 3.4 (as lxml no longer supports it)
28+
29+
## v1.1.11
30+
31+
- Support for Sphinx 2
32+
- Update to Semantic UI 2.4.1
33+
- Fix oversize tabs in Sphinx 2 (#38)
34+
- Various bug fixes
35+
36+
## v1.1.10
37+
38+
- Fix group tabs behaviour (#31)
39+
40+
## v1.1.9
41+
42+
- Fix copying of tab assets (JS and CSS) when module is installed as a python egg
43+
- Make tabs wrap on narrow screens (#30)
44+
- Add support for nested tabs (#29)
45+
46+
## v1.1.8
47+
48+
- Add support for :linenos: to code tabs (#22)
49+
- Improve fallback for non-HTML builders (#19)
50+
- Add spelling builder to list of builders (#20)
51+
- Fix naming a tab as a number (#24)
52+
53+
## v1.1.7
54+
55+
- Fix css files not being removed when tabs are not used on a page
56+
- Now require sphinx>=1.4
57+
- Fix issues with script and css includes on readthedocs (#17)
58+
59+
## v1.1.6
60+
61+
- Don't emit an additional error in the copy assets handler if the build process fails
62+
63+
## v1.1.5
64+
65+
- Add sphinx_tabs_nowarn option to disable warning about incompatible builder. Useful when running sphinx-build with the -W flag
66+
67+
## v1.1.4
68+
69+
- Fix broken javascript file inclusion
70+
71+
## v1.1.3
72+
73+
- Insert CSS and JS files after custom ones add in conf.py
74+
75+
## v1.1.2
76+
77+
- Add support for dirhtml builder
78+
79+
## v1.1.1
80+
81+
- Allow multiple group tabs with the same name (the ordering of the tabs is used to determine the group ids)
82+
- Use b64 encoding of group id for group tabs to avoid illegal character in CSS class
83+
84+
## v1.1.0
85+
86+
- Fix issue with multiple words in tab titles
87+
- Add support for markup in tab titles
88+
- Fix graphical glitches caused by illegal characters in group tab ids
89+
90+
## v1.0.1
91+
92+
- Fix possible exception when adding/removing CSS/JS files from the context
93+
94+
## v1.0.0
95+
96+
- Initial version

β€ŽCHANGES.txt

Lines changed: 0 additions & 61 deletions
This file was deleted.

β€ŽMANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude codecov.yml
1313

1414
include LICENSE
1515
include README.md
16-
include CHANGES.txt
16+
include CHANGELOG.md
1717

1818
include sphinx_tabs/tabs.js
1919
include sphinx_tabs/tabs.css

β€Žsphinx_tabs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.1.13"
1+
__version__ = "1.2.0"
22

33
__import__("pkg_resources").declare_namespace(__name__)

0 commit comments

Comments
Β (0)