Skip to content

Commit

Permalink
Merge pull request #4 from JuliaGeo/rename
Browse files Browse the repository at this point in the history
rename to Geo.jl
  • Loading branch information
rafaqz authored Dec 13, 2024
2 parents af879e9 + 324cf23 commit 10ea0cf
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ jobs:
shell: julia --project=docs --color=yes {0}
run: |
using Documenter: DocMeta, doctest
using JuliaGeo
DocMeta.setdocmeta!(JuliaGeo, :DocTestSetup, :(using JuliaGeo); recursive=true)
doctest(JuliaGeo)
using Geo
DocMeta.setdocmeta!(Geo, :DocTestSetup, :(using Geo); recursive=true)
doctest(Geo)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 JuliaGeo contributors
Copyright (c) 2024 Geo contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "JuliaGeo"
name = "Geo"
uuid = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"
authors = ["JuliaGeo contributors"]
authors = ["Geo contributors"]
version = "0.0.1"

[deps]
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# JuliaGeo
# Geo

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeo.github.io/JuliaGeo.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeo.github.io/JuliaGeo.jl/dev/)
[![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)
[![Coverage](https://codecov.io/gh/JuliaGeo/JuliaGeo.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGeo/JuliaGeo.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeo.github.io/Geo.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeo.github.io/Geo.jl/dev/)
[![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)
[![Coverage](https://codecov.io/gh/JuliaGeo/Geo.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGeo/Geo.jl)

A meta package for the JuliaGeo ecosystem.
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
JuliaGeo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"
Geo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1"
14 changes: 7 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using JuliaGeo
using Geo
using Documenter

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

makedocs(;
modules=[JuliaGeo],
authors="JuliaGeo contributors",
sitename="JuliaGeo.jl",
modules=[Geo],
authors="Geo contributors",
sitename="Geo.jl",
format=Documenter.HTML(;
canonical="https://JuliaGeo.github.io/JuliaGeo.jl",
canonical="https://JuliaGeo.github.io/Geo.jl",
edit_link="main",
assets=String[],
),
Expand All @@ -18,6 +18,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/JuliaGeo/JuliaGeo.jl",
repo="github.com/JuliaGeo/Geo.jl",
devbranch="main",
)
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
```@meta
CurrentModule = JuliaGeo
CurrentModule = Geo
```

# JuliaGeo
# Geo

Documentation for [JuliaGeo](https://github.com/JuliaGeo/JuliaGeo.jl).
Documentation for [Geo](https://github.com/JuliaGeo/Geo.jl).

```@index
```

```@autodocs
Modules = [JuliaGeo]
Modules = [Geo]
```
2 changes: 1 addition & 1 deletion src/JuliaGeo.jl → src/Geo.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module JuliaGeo
module Geo

# Write your package code here.

Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using JuliaGeo
using Geo
using Test

@testset "JuliaGeo.jl" begin
@testset "Geo.jl" begin
# Write your tests here.
end

0 comments on commit 10ea0cf

Please sign in to comment.