Skip to content

Commit e8bdf4d

Browse files
committed
more renames
1 parent 4245428 commit e8bdf4d

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/CI.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
shell: julia --project=docs --color=yes {0}
7474
run: |
7575
using Documenter: DocMeta, doctest
76-
using JuliaGeo
77-
DocMeta.setdocmeta!(JuliaGeo, :DocTestSetup, :(using JuliaGeo); recursive=true)
78-
doctest(JuliaGeo)
76+
using Geo
77+
DocMeta.setdocmeta!(Geo, :DocTestSetup, :(using Geo); recursive=true)
78+
doctest(Geo)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 JuliaGeo contributors
3+
Copyright (c) 2024 Geo contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Geo"
22
uuid = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"
3-
authors = ["JuliaGeo contributors"]
3+
authors = ["Geo contributors"]
44
version = "0.0.1"
55

66
[deps]

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# JuliaGeo
1+
# Geo
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeo.github.io/JuliaGeo.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeo.github.io/JuliaGeo.jl/dev/)
5-
[![Build Status](https://github.com/JuliaGeo/JuliaGeo.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaGeo/JuliaGeo.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/JuliaGeo/JuliaGeo.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGeo/JuliaGeo.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeo.github.io/Geo.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeo.github.io/Geo.jl/dev/)
5+
[![Build Status](https://github.com/JuliaGeo/Geo.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaGeo/Geo.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/JuliaGeo/Geo.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGeo/Geo.jl)
77

88
A meta package for the JuliaGeo ecosystem.

docs/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
JuliaGeo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"
3+
Geo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"

docs/make.jl

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
using JuliaGeo
1+
using Geo
22
using Documenter
33

4-
DocMeta.setdocmeta!(JuliaGeo, :DocTestSetup, :(using JuliaGeo); recursive=true)
4+
DocMeta.setdocmeta!(Geo, :DocTestSetup, :(using Geo); recursive=true)
55

66
makedocs(;
7-
modules=[JuliaGeo],
8-
authors="JuliaGeo contributors",
9-
sitename="JuliaGeo.jl",
7+
modules=[Geo],
8+
authors="Geo contributors",
9+
sitename="Geo.jl",
1010
format=Documenter.HTML(;
11-
canonical="https://JuliaGeo.github.io/JuliaGeo.jl",
11+
canonical="https://JuliaGeo.github.io/Geo.jl",
1212
edit_link="main",
1313
assets=String[],
1414
),
@@ -18,6 +18,6 @@ makedocs(;
1818
)
1919

2020
deploydocs(;
21-
repo="github.com/JuliaGeo/JuliaGeo.jl",
21+
repo="github.com/JuliaGeo/Geo.jl",
2222
devbranch="main",
2323
)

0 commit comments

Comments
 (0)