Skip to content

Commit 2a96d82

Browse files
authored
Prep 7.0 release (#879)
* Bump version and change references to 7.0 instead of 7.0rc1 * Tweak special and line highlight code colors
1 parent 90f1b3a commit 2a96d82

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/src/markdown/about/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 7.0rc2
3+
## 7.0
44

55
Please see [Release Notes](./release.md#upgrading-to-70) for details on upgrading to 7.0.
66

docs/src/scss/extensions/_highlight.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030

3131
$code-header-fg-color: transparentize($drac-fg, 0.46);
32-
$code-hll-bg-color: transparentize($drac-selection, 0.6);
32+
$code-hll-bg-color: transparentize($drac-blue, 0.8);
3333

3434
.hll { background-color: $code-hll-bg-color; }
3535
.c { color: $drac-blue } // Comment
@@ -156,7 +156,7 @@
156156

157157
/* Special line mode coloring */
158158
&.special::before {
159-
background-color: var(--md-default-fg-color--lightest);
159+
background-color: var(--md-default-bg-color--dark);
160160
}
161161
}
162162
}
@@ -169,7 +169,7 @@
169169
margin-left: px2em(-16px, 13.6px);
170170
padding-right: px2em(8px, 13.6px);
171171
padding-left: px2em(16px, 13.6px);
172-
background-color: var(--md-default-fg-color--lightest);
172+
background-color: var(--md-default-bg-color--dark);
173173
}
174174
}
175175
}

docs/theme/assets/pymdownx-extras/extra-01ab49a0b3.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/theme/assets/pymdownx-extras/extra-d6b3939c22.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pymdownx/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,5 @@ def parse_version(ver, pre=False):
185185
return Version(major, minor, micro, release, pre, post, dev)
186186

187187

188-
__version_info__ = Version(7, 0, 0, "candidate", 2)
188+
__version_info__ = Version(7, 0, 0, "final")
189189
__version__ = __version_info__._get_canonical()

0 commit comments

Comments
 (0)