Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyfun"
version = "0.6.0"
version = "0.7.0"
edition = "2024"
# Edition 2024's floor is Rust 1.85; the code uses nothing newer. The exact build
# toolchain is pinned separately in rust-toolchain.toml.
Expand Down
2 changes: 1 addition & 1 deletion editors/emacs/pyfun-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; Maintainer: Simon Treanor
;; Assisted-by: Claude Code:claude-opus-5
;; URL: https://github.com/simontreanor/Pyfun
;; Version: 0.6.0
;; Version: 0.7.0
;; Package-Requires: ((emacs "29.1"))
;; Keywords: languages

Expand Down
2 changes: 1 addition & 1 deletion editors/jetbrains/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "com.github.simontreanor"
version = "0.6.0"
version = "0.7.0"

repositories {
mavenCentral()
Expand Down
9 changes: 9 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
The extension's version tracks the compiler's: every Pyfun release ships a matching extension, so
`pyfun --version` and the installed client always agree. A release with no client changes says so.

## 0.7.0

- Version aligned to the compiler's 0.7.0 release. No client changes; the compiler it drives emits
faster Python for `Option`/`Result` matches, nullary constructors, lookups consumed by a match and
equality searches, folds over destructured elements are linear, every emitted class uses
`__slots__`, and four cases where a program passed checking and failed at runtime (a block-local
partial application, and three shadowing shapes that rebound a Python function-wide local) are
fixed.

## 0.6.0

- Version aligned to the compiler's 0.6.0 release. No client changes; the language server it drives
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pyfun",
"displayName": "Pyfun",
"description": "Pyfun language support: syntax highlighting plus diagnostics, hover, navigation, and more, backed by `pyfun lsp`.",
"version": "0.6.0",
"version": "0.7.0",
"publisher": "pyfun",
"repository": {
"type": "git",
Expand Down