From 42454287b3a96cca94f14d146aea5391c77dcff0 Mon Sep 17 00:00:00 2001 From: Rafael Schouten Date: Fri, 13 Dec 2024 20:39:12 +0100 Subject: [PATCH 1/3] rename to Geo.jl --- Project.toml | 2 +- src/{JuliaGeo.jl => Geo.jl} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{JuliaGeo.jl => Geo.jl} (70%) diff --git a/Project.toml b/Project.toml index d20a328..83c22b4 100644 --- a/Project.toml +++ b/Project.toml @@ -1,4 +1,4 @@ -name = "JuliaGeo" +name = "Geo" uuid = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1" authors = ["JuliaGeo contributors"] version = "0.0.1" diff --git a/src/JuliaGeo.jl b/src/Geo.jl similarity index 70% rename from src/JuliaGeo.jl rename to src/Geo.jl index ae832d8..72aef50 100644 --- a/src/JuliaGeo.jl +++ b/src/Geo.jl @@ -1,4 +1,4 @@ -module JuliaGeo +module Geo # Write your package code here. From e8bdf4d7dd8d453381bd50c5b1b8cac150cd0372 Mon Sep 17 00:00:00 2001 From: Rafael Schouten Date: Fri, 13 Dec 2024 20:56:13 +0100 Subject: [PATCH 2/3] more renames --- .github/workflows/CI.yml | 6 +++--- LICENSE | 2 +- Project.toml | 2 +- README.md | 10 +++++----- docs/Project.toml | 2 +- docs/make.jl | 14 +++++++------- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4864985..d863703 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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) diff --git a/LICENSE b/LICENSE index 0a81b8f..4cdf76c 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/Project.toml b/Project.toml index 83c22b4..784d1fc 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "Geo" uuid = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1" -authors = ["JuliaGeo contributors"] +authors = ["Geo contributors"] version = "0.0.1" [deps] diff --git a/README.md b/README.md index 996bfa6..18d8de9 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/Project.toml b/docs/Project.toml index b5ab58b..b330722 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -1,3 +1,3 @@ [deps] Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" -JuliaGeo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1" +Geo = "4f75c4cc-f146-4713-b1b1-9323cfc49fb1" diff --git a/docs/make.jl b/docs/make.jl index 674c51b..aa63cd7 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -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[], ), @@ -18,6 +18,6 @@ makedocs(; ) deploydocs(; - repo="github.com/JuliaGeo/JuliaGeo.jl", + repo="github.com/JuliaGeo/Geo.jl", devbranch="main", ) From 324cf2351a0acb7fc01ed8db8d2a45f5c5dd0d5a Mon Sep 17 00:00:00 2001 From: Rafael Schouten Date: Fri, 13 Dec 2024 20:57:21 +0100 Subject: [PATCH 3/3] more renames --- docs/src/index.md | 8 ++++---- test/runtests.jl | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/index.md b/docs/src/index.md index f690efa..39d88f1 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -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] ``` diff --git a/test/runtests.jl b/test/runtests.jl index ac3d836..7cf29b6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,6 +1,6 @@ -using JuliaGeo +using Geo using Test -@testset "JuliaGeo.jl" begin +@testset "Geo.jl" begin # Write your tests here. end