Skip to content

Commit cb89002

Browse files
committed
invenia -> iamed2
1 parent 2d45074 commit cb89002

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
LibPQ.jl is a Julia wrapper for the PostgreSQL `libpq` [C library](https://www.postgresql.org/docs/current/libpq.html).
66

7-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/LibPQ.jl/stable/)
8-
[![In Development](https://img.shields.io/badge/docs-dev-blue.svg)](https://invenia.github.io/LibPQ.jl/dev/)
9-
[![Build Status](https://travis-ci.com/invenia/LibPQ.jl.svg?branch=master)](https://travis-ci.com/invenia/LibPQ.jl)
10-
[![CodeCov](https://codecov.io/gh/invenia/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/invenia/LibPQ.jl)
7+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://iamed2.github.io/LibPQ.jl/stable/)
8+
[![In Development](https://img.shields.io/badge/docs-dev-blue.svg)](https://iamed2.github.io/LibPQ.jl/dev/)
9+
[![CI](https://github.com/iamed2/LibPQ.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/iamed2/LibPQ.jl/actions/workflows/CI.yml)
10+
[![CodeCov](https://codecov.io/gh/iamed2/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/iamed2/LibPQ.jl)
1111

1212
## Features
1313

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ makedocs(;
1717
"API" => "pages/api.md",
1818
"FAQ" => "pages/faq.md",
1919
],
20-
repo="https://github.com/invenia/LibPQ.jl/blob/{commit}{path}#L{line}",
20+
repo="https://github.com/iamed2/LibPQ.jl/blob/{commit}{path}#L{line}",
2121
sitename="LibPQ.jl",
2222
checkdocs=:exports,
2323
linkcheck=true,
@@ -27,5 +27,5 @@ makedocs(;
2727
)
2828

2929
deploydocs(;
30-
repo="github.com/invenia/LibPQ.jl",
30+
repo="github.com/iamed2/LibPQ.jl",
3131
)

docs/src/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
A Julia wrapper for the PostgreSQL `libpq` [C library](https://www.postgresql.org/docs/current/libpq.html).
66

7-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://invenia.github.io/LibPQ.jl/stable/)
8-
[![In Development](https://img.shields.io/badge/docs-dev-blue.svg)](https://invenia.github.io/LibPQ.jl/dev/)
9-
[![Build Status](https://travis-ci.com/invenia/LibPQ.jl.svg?branch=master)](https://travis-ci.com/invenia/LibPQ.jl)
10-
[![CodeCov](https://codecov.io/gh/invenia/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/invenia/LibPQ.jl)
7+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://iamed2.github.io/LibPQ.jl/stable/)
8+
[![In Development](https://img.shields.io/badge/docs-dev-blue.svg)](https://iamed2.github.io/LibPQ.jl/dev/)
9+
[![CI](https://github.com/iamed2/LibPQ.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/iamed2/LibPQ.jl/actions/workflows/CI.yml)
10+
[![CodeCov](https://codecov.io/gh/iamed2/LibPQ.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/iamed2/LibPQ.jl)
1111

1212
## Examples
1313

src/parsing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ end
235235

236236
# Cut off digits after the third after the decimal point,
237237
# since DateTime in Julia currently handles only milliseconds
238-
# see https://github.com/invenia/LibPQ.jl/issues/33
238+
# see https://github.com/iamed2/LibPQ.jl/issues/33
239239
_trunc_seconds(str) = replace(str, r"(\.[\d]{3})\d+" => s"\g<1>")
240240

241241
# Utility function for handling "infinity" strings for datetime types to reduce duplication

0 commit comments

Comments
 (0)