Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove old deprecations and other basic housekeeping #9

Merged
merged 12 commits into from
Jun 29, 2023
Merged
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.7
version: 1.9
- name: Install dependencies
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"'
- name: Run benchmarks
Expand All @@ -29,7 +29,7 @@ jobs:
run: julia -e '
using BenchmarkCI;
BenchmarkCI.pushresult(;
url = "[email protected]:JuliaFolds/Transducers-data.git",
url = "[email protected]:JuliaFolds2/Transducers-data.git",
);
'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.6
version: 1.9
- name: Install Run.jl
run: julia -e 'using Pkg; pkg"add [email protected]"'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/multi-thread-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.7
version: 1.9
- name: Install dependencies
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"'
- name: Run benchmarks
Expand All @@ -27,7 +27,7 @@ jobs:
using BenchmarkCI;
BenchmarkCI.pushresult(;
title = "Multi-thread benchmark result",
url = "[email protected]:JuliaFolds/Transducers-data.git",
url = "[email protected]:JuliaFolds2/Transducers-data.git",
branch = "multi-thread-benchmark-results",
);
'
Expand Down
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name = "Transducers"
uuid = "28d57a85-8fef-5791-bfe6-a80928e7c999"
authors = ["Takafumi Arakaki <[email protected]>"]
version = "0.4.77"
version = "0.4.78"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66"
Baselet = "9718e550-a3fa-408a-8086-8db961cd8217"
CompositionsBase = "a33af91c-f02d-484b-be07-31d278c5ca2b"
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
DefineSingletons = "244e2a9f-e319-4986-a169-4d1fe445cd52"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
InitialValues = "22cec73e-a1b8-11e9-2c92-598750a2cf9c"
Expand All @@ -26,6 +27,7 @@ ArgCheck = "1, 2.0"
BangBang = "0.3.28"
Baselet = "0.1"
CompositionsBase = "0.1"
ConstructionBase = "1"
DefineSingletons = "0.1"
InitialValues = "0.2.8, 0.3"
MicroCollections = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ execution. If a transducer is composed of such transducers, it can be
automatically re-used both in sequential (`foldl` etc.) and parallel
(`reduce` etc.) contexts.

See more in the [documentation](https://juliafolds.github.io/Transducers.jl/dev).
See more in the [documentation](https://juliafolds2.github.io/Transducers.jl/dev).

If you are interested in parallel programming in general, see also:
[A quick introduction to data parallelism in Julia](https://juliafolds.github.io/data-parallelism/tutorials/quick-introduction/)
Expand Down Expand Up @@ -65,9 +65,9 @@ GPU-based parallelism.
construct a data collection.

[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: https://juliafolds.github.io/Transducers.jl/stable
[docs-stable-url]: https://juliafolds2.github.io/Transducers.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: https://juliafolds.github.io/Transducers.jl/dev
[docs-dev-url]: https://juliafolds2.github.io/Transducers.jl/dev
[travis-img]: https://travis-ci.com/JuliaFolds/Transducers.jl.svg?branch=master
[travis-url]: https://travis-ci.com/JuliaFolds/Transducers.jl
[codecov-img]: http://codecov.io/github/JuliaFolds/Transducers.jl/coverage.svg?branch=master
Expand Down
Loading