Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
I3oris committed Nov 26, 2022
1 parent 1060b2f commit f041ece
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## RELPy v0.3.1

### Bug fixs
* Fix `REPLy` on Mac, caused by a wrong implementation of `ioctl`. Remake entirely the implementation of `Reply::Term::Size` in a more portable way. Inspired by (https://github.com/crystal-term/screen/blob/master/src/term-screen.cr.)

### Internals
* Compute the term-size only once for each input. Fix slow performance when the size is taken from `tput` (if `ioctl` fails).
* Fix spec on windows due to '\n\r'.
* Fix typo ('p' was duplicate in 'dupplicate').

## RELPy v0.3.0

### New features
Expand Down Expand Up @@ -47,7 +57,6 @@ that becomes 'ctrl-enter' on windows.
* Refactor: move word functions (`delete_word`, `move_word_forward`, etc.) from `Reader` to the `ExpressionEditor`.
* Add this CHANGELOG.


## RELPy v0.1.0
First version extracted from IC.

Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: reply
version: 0.3.0
version: 0.3.1
description: "Shard to create a REPL interface"

authors:
Expand Down
2 changes: 1 addition & 1 deletion src/reply.cr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require "./reader"

module Reply
VERSION = "0.3.0"
VERSION = "0.3.1"
end

0 comments on commit f041ece

Please sign in to comment.