Skip to content

Commit

Permalink
Rename ponybench to match standard naming conventions.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Feb 23, 2022
1 parent bdea439 commit 5b7524d
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .release-notes/ponybench-rename.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Rename `ponybench` package to match standard library naming conventions

We recently realized that when we renamed large portions of the standard library to conform with our naming standards, that we missed the `ponybench` package. To conform with the naming convention, the `ponybench` package as been renamed to `pony_bench`.

You'll need to update your test code from:

```pony
use "pony_bench"
```

to

```pony
use "pony_bench"
```
2 changes: 1 addition & 1 deletion examples/ponybench/main.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponybench"
use "pony_bench"
use "time"

actor Main is BenchmarkList
Expand Down
2 changes: 1 addition & 1 deletion packages/buffered/benchmarks/main.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use ".."
use "ponybench"
use "pony_bench"
use "collections"

actor Main is BenchmarkList
Expand Down
2 changes: 1 addition & 1 deletion packages/collections/persistent/benchmarks/main.pony
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use ".."
use mut = "collections"
use "ponybench"
use "pony_bench"

type K is String
type V is U64
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/random/benchmarks/main.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use ".."
use "ponybench"
use "pony_bench"

actor Main is BenchmarkList
new create(env: Env) =>
Expand Down

0 comments on commit 5b7524d

Please sign in to comment.