From b94db5c1f99655d082bac42614c13e0059be9f3e Mon Sep 17 00:00:00 2001 From: bvdmitri Date: Wed, 10 Jan 2024 20:29:46 +0100 Subject: [PATCH] Replace links to the new organization --- .gitignore | 3 +++ LICENSE | 2 +- README.md | 8 ++++---- docs/make.jl | 6 +++--- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 20fe29d..ecfb3a5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ *.jl.mem /Manifest.toml /docs/build/ + +.idea +.vscode diff --git a/LICENSE b/LICENSE index 86f6ece..9a187f9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Bagaev Dmitry and contributors +Copyright (c) 2022-2024 Bagaev Dmitry , 2024-present ReactiveBayes 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/README.md b/README.md index 009eb7f..80ce999 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # TinyHugeNumbers -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bvdmitri.github.io/TinyHugeNumbers.jl/stable/) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bvdmitri.github.io/TinyHugeNumbers.jl/dev/) -[![Build Status](https://github.com/bvdmitri/TinyHugeNumbers.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/bvdmitri/TinyHugeNumbers.jl/actions/workflows/CI.yml?query=branch%3Amain) -[![Coverage](https://codecov.io/gh/bvdmitri/TinyHugeNumbers.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bvdmitri/TinyHugeNumbers.jl) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://reactivebayes.github.io/TinyHugeNumbers.jl/stable/) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://reactivebayes.github.io/TinyHugeNumbers.jl/dev/) +[![Build Status](https://github.com/reactivebayes/TinyHugeNumbers.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/reactivebayes/TinyHugeNumbers.jl/actions/workflows/CI.yml?query=branch%3Amain) +[![Coverage](https://codecov.io/gh/reactivebayes/TinyHugeNumbers.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/reactivebayes/TinyHugeNumbers.jl) [![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/T/TinyHugeNumbers.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/report.html) The `TinyHugeNumbers` package exports `tiny` and `huge` objects to represent tiny and huge numbers. These objects aren't really numbers and behave differently depending on the context. They do support any operation that is defined for Real numbers. For more info see Julia's documentation about promotion. diff --git a/docs/make.jl b/docs/make.jl index 327fbd4..ae45b1b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -7,11 +7,11 @@ makedocs(; modules = [ TinyHugeNumbers ], strict = [ :doctest, :eval_block, :example_block, :meta_block, :parse_error, :setup_block ], authors = "Bagaev Dmitry and contributors", - repo = "https://github.com/bvdmitri/TinyHugeNumbers.jl/blob/{commit}{path}#{line}", + repo = "https://github.com/reactivebayes/TinyHugeNumbers.jl/blob/{commit}{path}#{line}", sitename = "TinyHugeNumbers.jl", format = Documenter.HTML(; prettyurls = get(ENV, "CI", "false") == "true", - canonical = "https://bvdmitri.github.io/TinyHugeNumbers.jl", + canonical = "https://reactivebayes.github.io/TinyHugeNumbers.jl", edit_link = "main", assets = String[], ), @@ -20,4 +20,4 @@ makedocs(; ], ) -deploydocs(; repo="github.com/bvdmitri/TinyHugeNumbers.jl", devbranch="main") +deploydocs(; repo="github.com/reactivebayes/TinyHugeNumbers.jl", devbranch="main")