Skip to content

Commit

Permalink
[terminal] Updated Windows stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Nov 13, 2023
1 parent 01e92a7 commit 6893e95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### 12.84.1

* `[terminal]` Updated Windows stubs

### 12.84.0

* `[errutil]` Added method `Errors.First`
Expand Down
2 changes: 1 addition & 1 deletion ek.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
// ////////////////////////////////////////////////////////////////////////////////// //

// VERSION is current ek package version
const VERSION = "12.84.0"
const VERSION = "12.84.1"

// ////////////////////////////////////////////////////////////////////////////////// //

Expand Down
6 changes: 3 additions & 3 deletions terminal/terminal_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,17 @@ func PrintActionStatus(status int) {
}

// ❗ Error prints error message
func Error(message string, args ...any) {
func Error(message any, args ...any) {
panic("UNSUPPORTED")
}

// ❗ Warn prints warning message
func Warn(message string, args ...any) {
func Warn(message any, args ...any) {
panic("UNSUPPORTED")
}

// ❗ Info prints info message
func Info(message string, args ...any) {
func Info(message any, args ...any) {
panic("UNSUPPORTED")
}

Expand Down

0 comments on commit 6893e95

Please sign in to comment.