diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0f3bb..18214c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2022-06-11 + +### Fixed + +- Fixed pending debug code + ## [1.2.0] - 2022-06-11 ### Added diff --git a/stres.go b/stres.go index 0be6fa5..9514b49 100644 --- a/stres.go +++ b/stres.go @@ -2,7 +2,6 @@ package stres import ( "errors" - "fmt" "io/ioutil" "os" "strings" @@ -195,14 +194,6 @@ func NewString(name, value string) (types.String, error) { data, err = encDec.Encode(n) - for i := 0; i < len(data); i++ { - fmt.Printf("%+v, ", data[i]) - if i%10 == 0 { - println() - } - } - println() - if err != nil { return *new(types.String), err }