Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/text
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.6
Choose a base ref
...
head repository: golang/text
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.7
Choose a head ref
  • 4 commits
  • 6 files changed
  • 4 contributors

Commits on Apr 11, 2021

  1. number: match input example to be Dutch as in the output

    Change-Id: I5d1eaf79aa267121ce08dc3990b86ff30c8e0505
    GitHub-Last-Rev: 0421867
    GitHub-Pull-Request: #21
    Reviewed-on: https://go-review.googlesource.com/c/text/+/297589
    Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
    Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
    Run-TryBot: Emmanuel Odeke <emmanuel@orijtech.com>
    TryBot-Result: Go Bot <gobot@golang.org>
    carleeto authored and tklauser committed Apr 11, 2021
    Configuration menu
    Copy the full SHA
    c2d28a6 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2021

  1. go.mod: upgrade to go 1.17

    This change was produced using 'go mod tidy -go=1.17'
    with a go command built at CL 315210.
    
    This activates lazy loading, and updates the go.mod file to maintain
    the lazy-loading invariants (namely, including an explicit requirement
    for every package transitively imported by the main module).
    
    Note that this does *not* prevent users with earlier go versions from
    successfully building packages from this module.
    
    For golang/go#36460
    
    Change-Id: Iabb65fc3ed9727abecc3926abcecd445c967d0a9
    Reviewed-on: https://go-review.googlesource.com/c/text/+/315571
    Trust: Bryan C. Mills <bcmills@google.com>
    Run-TryBot: Bryan C. Mills <bcmills@google.com>
    TryBot-Result: Go Bot <gobot@golang.org>
    Reviewed-by: Alexander Rakoczy <alex@golang.org>
    Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
    Bryan C. Mills committed May 3, 2021
    Configuration menu
    Copy the full SHA
    5c7c50e View commit details
    Browse the repository at this point in the history

Commits on May 24, 2021

  1. language: use multiple runs in TestBestMatchAlloc

    AllocsPerRun sets runtime.GOMAXPROCS to 1, but it doesn't prevent the runtime from descheduling a goroutine
    and performing an allocation somewhere in the background.
    This commit changes the test to use a number of runs large enough to average away the occasional noisy allocation.
    
    Fixes golang/go#45809
    
    Change-Id: Ibf904016d0c067740469c8e861079611440222a1
    GitHub-Last-Rev: 1606b69
    GitHub-Pull-Request: #23
    Reviewed-on: https://go-review.googlesource.com/c/text/+/321737
    Reviewed-by: Bryan C. Mills <bcmills@google.com>
    Trust: Michael Knyszek <mknyszek@google.com>
    dpaks authored and Bryan C. Mills committed May 24, 2021
    Configuration menu
    Copy the full SHA
    3115f89 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2021

  1. language: turn parsing panics into ErrSyntax

    We keep finding new panics in the language parser.
    Limit the damage by reporting those inputs as syntax errors.
    
    Change-Id: I786fe127c3df7e4c8e042d15095d3acf3c4e4a50
    Reviewed-on: https://go-review.googlesource.com/c/text/+/340830
    Trust: Russ Cox <rsc@golang.org>
    Run-TryBot: Russ Cox <rsc@golang.org>
    TryBot-Result: Go Bot <gobot@golang.org>
    Reviewed-by: Roland Shoemaker <roland@golang.org>
    rsc committed Aug 10, 2021
    Configuration menu
    Copy the full SHA
    383b2e7 View commit details
    Browse the repository at this point in the history
Loading