Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace links to the new organization #2

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
*.jl.mem
/Manifest.toml
/docs/build/

.idea
.vscode
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) 2022 Bagaev Dmitry <[email protected]> and contributors
Copyright (c) 2022-2024 Bagaev Dmitry <[email protected]>, 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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ makedocs(;
modules = [ TinyHugeNumbers ],
strict = [ :doctest, :eval_block, :example_block, :meta_block, :parse_error, :setup_block ],
authors = "Bagaev Dmitry <[email protected]> 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[],
),
Expand All @@ -20,4 +20,4 @@ makedocs(;
],
)

deploydocs(; repo="github.com/bvdmitri/TinyHugeNumbers.jl", devbranch="main")
deploydocs(; repo="github.com/reactivebayes/TinyHugeNumbers.jl", devbranch="main")
Loading