Skip to content

Commit

Permalink
Version 3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-mironov committed Dec 27, 2024
1 parent c70511f commit 5e779e6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Changelog
=========

Version 3.11
------------

1. **Python**
- The interpreters have been refactored into their own submodule, improving
code organization.
- Added preliminary support for
[shell](./python/litrepl/interpreters/shell.py) interpreters, allowing the
system to handle shell commands.
- Introduced new commands: `print-grammar` to output the grammar and
`print-regexp` for regular expression management.
- Introduced adjustable code section labels, removing the default `lcode`
sections support.
- Improved debugging and configuration support in IPython by ensuring
expanded paths and correct handling of the DEBUG setting.
- Support for automatic file type detection with `--filetype=auto` has been
implemented.
- The support for `--irreproducible-exitcode` argument was added

2. **Vim**
- Fixed cursor handling issues in `LEvalMon`, improving text navigation and
evaluation feedback within Vim.

Version 3.10.1
--------------

Expand Down
2 changes: 1 addition & 1 deletion semver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.2
3.11.0
6 changes: 3 additions & 3 deletions sh/diffchanges.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
git log --oneline | grep 'Version [0-9]\+\.[0-9]\+\.[0-9]\+' >_versions.txt
HASH_LAST=`git rev-parse HEAD`
HASH_PREV=`head -n 1 _versions.txt | awk '{print $1}' `
# HASH_LAST=`head -n 1 _versions.txt | awk '{print $1}' `
# HASH_PREV=`head -n 2 _versions.txt | tail -n 1 | awk '{print $1}' `
git diff $HASH_PREV..$HASH_LAST -- . ':(exclude)README.md' ':(exclude)semver.txt' >_lastdiff.diff

# git log $HASH_PREV..$HASH_LAST --pretty=format:"%h %s" --patch -- python ':(exclude)README.md' ':(exclude)semver.txt' >_lastdiff.diff
git log $HASH_PREV..$HASH_LAST --pretty=format:"%h %s" -- python ':(exclude)README.md' ':(exclude)semver.txt' >_lastdiff.diff

cat >_mkchangelog.ai <<"EOF"
You task is to check the diff file and generate a text briefly describing the
Expand Down

0 comments on commit 5e779e6

Please sign in to comment.