Skip to content

Commit 6c0f87b

Browse files
committed
v0.6.0
1 parent 3952e2f commit 6c0f87b

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Change Log
22

33

4-
## v0.6.0 (dev)
4+
## v0.6.0 (2022-02-22)
55

66
* Python 3.7 is now the minimum supported version.
77

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ Codebraid is a Python program that enables executable code in
55
simple as adding a class to your code blocks' attributes, and then running
66
`codebraid` rather than `pandoc` to convert your document from Markdown to
77
another format. `codebraid` supports almost all of `pandoc`'s options and
8-
passes them to `pandoc` internally.
8+
passes them to `pandoc` internally. See
9+
[Codebraid Preview for VS Code](https://marketplace.visualstudio.com/items?itemName=gpoore.codebraid-preview)
10+
for editor support.
911

1012
Codebraid provides two options for executing code. It includes a built-in
1113
code execution system that currently supports **Python 3.7+**, **Julia**,

codebraid/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22

33
from .fmtversion import get_version_plus_info
4-
__version__, __version_info__ = get_version_plus_info(0, 6, 0, 'dev', 6)
4+
__version__, __version_info__ = get_version_plus_info(0, 6, 0, 'final', 0)

0 commit comments

Comments
 (0)