Skip to content

Commit

Permalink
Replace links to the new organization
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Jan 10, 2024
1 parent 7efa6c9 commit b94db5c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
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 <bvdmitri@gmail.com> and contributors
Copyright (c) 2022-2024 Bagaev Dmitry <bvdmitri@gmail.com>, 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 <bvdmitri@gmail.com> 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")

0 comments on commit b94db5c

Please sign in to comment.