Skip to content

Commit eaf3cb3

Browse files
authored
Rename to MapBroadcast.jl (#1)
1 parent 54cd48a commit eaf3cb3

File tree

16 files changed

+45
-51
lines changed

16 files changed

+45
-51
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: BroadcastMapConversion.jl bug report
3-
about: Create a bug report to help us improve BroadcastMapConversion.jl
2+
name: MapBroadcast.jl bug report
3+
about: Create a bug report to help us improve MapBroadcast.jl
44
title: "[BUG] YOUR SHORT DESCRIPTION OF THE BUG HERE"
55
labels: ["bug"]
66
assignees: ''
@@ -55,8 +55,8 @@ If you provided a minimal code that demonstrates the bug or unexpected behavior,
5555
julia> versioninfo()
5656
[YOUR OUTPUT HERE]
5757
```
58-
- Output from `using Pkg; Pkg.status("BroadcastMapConversion")`:
58+
- Output from `using Pkg; Pkg.status("MapBroadcast")`:
5959
```julia
60-
julia> using Pkg; Pkg.status("BroadcastMapConversion")
60+
julia> using Pkg; Pkg.status("MapBroadcast")
6161
[YOUR OUTPUT HERE]
6262
```

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: BroadcastMapConversion.jl feature request
3-
about: Suggest an idea for BroadcastMapConversion.jl
2+
name: MapBroadcast.jl feature request
3+
about: Suggest an idea for MapBroadcast.jl
44
title: "[ENHANCEMENT] YOUR SHORT DESCRIPTION OF THE FEATURE REQUEST HERE"
55
labels: ["enhancement"]
66
assignees: ''

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Please give a summary of the tests that you added to verify your changes.
3333

3434
# Checklist:
3535

36-
- [ ] My code follows the style guidelines of this project. Please run `using JuliaFormatter; format(".")` in the base directory of the repository (`~/.julia/dev/BroadcastMapConversion`) to format your code according to our style guidelines.
36+
- [ ] My code follows the style guidelines of this project. Please run `using JuliaFormatter; format(".")` in the base directory of the repository (`~/.julia/dev/MapBroadcast`) to format your code according to our style guidelines.
3737
- [ ] I have performed a self-review of my own code.
3838
- [ ] I have commented my code, particularly in hard-to-understand areas.
3939
- [ ] I have added tests that verify the behavior of the changes I made.

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name = "BroadcastMapConversion"
2-
uuid = "4a4adec5-520f-4750-bb37-d5e66b4ddeb2"
1+
name = "MapBroadcast"
2+
uuid = "ebd9b9da-f48d-417c-9660-449667d60261"
33
authors = ["ITensor developers <[email protected]> and contributors"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# BroadcastMapConversion.jl
1+
# MapBroadcast.jl
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://ITensor.github.io/BroadcastMapConversion.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ITensor.github.io/BroadcastMapConversion.jl/dev/)
5-
[![Build Status](https://github.com/ITensor/BroadcastMapConversion.jl/actions/workflows/Tests.yml/badge.svg?branch=main)](https://github.com/ITensor/BroadcastMapConversion.jl/actions/workflows/Tests.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/ITensor/BroadcastMapConversion.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ITensor/BroadcastMapConversion.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://ITensor.github.io/MapBroadcast.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ITensor.github.io/MapBroadcast.jl/dev/)
5+
[![Build Status](https://github.com/ITensor/MapBroadcast.jl/actions/workflows/Tests.yml/badge.svg?branch=main)](https://github.com/ITensor/MapBroadcast.jl/actions/workflows/Tests.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/ITensor/MapBroadcast.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ITensor/MapBroadcast.jl)
77
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
88
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
99

@@ -26,14 +26,14 @@ if you want to use SSH credentials, which can make it so you don't have to enter
2626
Then, the package can be added as usual through the package manager:
2727

2828
```julia
29-
julia> Pkg.add("BroadcastMapConversion")
29+
julia> Pkg.add("MapBroadcast")
3030
```
3131

3232
## Examples
3333

3434
````julia
3535
using Base.Broadcast: broadcasted
36-
using BroadcastMapConversion: Mapped, mapped
36+
using MapBroadcast: Mapped, mapped
3737
using Test: @test
3838

3939
a = randn(2, 2)

benchmark/benchmarks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using BroadcastMapConversion
1+
using MapBroadcast
22
using BenchmarkTools
33

44
SUITE = BenchmarkGroup()

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[deps]
2-
BroadcastMapConversion = "4a4adec5-520f-4750-bb37-d5e66b4ddeb2"
2+
MapBroadcast = "ebd9b9da-f48d-417c-9660-449667d60261"
33
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
44
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"

docs/make.jl

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
1-
using BroadcastMapConversion: BroadcastMapConversion
1+
using MapBroadcast: MapBroadcast
22
using Documenter: Documenter, DocMeta, deploydocs, makedocs
33

4-
DocMeta.setdocmeta!(
5-
BroadcastMapConversion, :DocTestSetup, :(using BroadcastMapConversion); recursive=true
6-
)
4+
DocMeta.setdocmeta!(MapBroadcast, :DocTestSetup, :(using MapBroadcast); recursive=true)
75

86
include("make_index.jl")
97

108
makedocs(;
11-
modules=[BroadcastMapConversion],
9+
modules=[MapBroadcast],
1210
authors="ITensor developers <[email protected]> and contributors",
13-
sitename="BroadcastMapConversion.jl",
11+
sitename="MapBroadcast.jl",
1412
format=Documenter.HTML(;
15-
canonical="https://ITensor.github.io/BroadcastMapConversion.jl",
16-
edit_link="main",
17-
assets=String[],
13+
canonical="https://ITensor.github.io/MapBroadcast.jl", edit_link="main", assets=String[]
1814
),
1915
pages=["Home" => "index.md"],
2016
)
2117

22-
deploydocs(;
23-
repo="github.com/ITensor/BroadcastMapConversion.jl", devbranch="main", push_preview=true
24-
)
18+
deploydocs(; repo="github.com/ITensor/MapBroadcast.jl", devbranch="main", push_preview=true)

docs/make_index.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Literate: Literate
2-
using BroadcastMapConversion: BroadcastMapConversion
2+
using MapBroadcast: MapBroadcast
33

44
Literate.markdown(
5-
joinpath(pkgdir(BroadcastMapConversion), "examples", "README.jl"),
6-
joinpath(pkgdir(BroadcastMapConversion), "docs", "src");
5+
joinpath(pkgdir(MapBroadcast), "examples", "README.jl"),
6+
joinpath(pkgdir(MapBroadcast), "docs", "src");
77
flavor=Literate.DocumenterFlavor(),
88
name="index",
99
)

docs/make_readme.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Literate: Literate
2-
using BroadcastMapConversion: BroadcastMapConversion
2+
using MapBroadcast: MapBroadcast
33

44
Literate.markdown(
5-
joinpath(pkgdir(BroadcastMapConversion), "examples", "README.jl"),
6-
joinpath(pkgdir(BroadcastMapConversion));
5+
joinpath(pkgdir(MapBroadcast), "examples", "README.jl"),
6+
joinpath(pkgdir(MapBroadcast));
77
flavor=Literate.CommonMarkFlavor(),
88
name="README",
99
)

0 commit comments

Comments
 (0)