Skip to content

Commit

Permalink
invenia -> iamed2
Browse files Browse the repository at this point in the history
  • Loading branch information
iamed2 committed Mar 13, 2023
1 parent 2d45074 commit cb89002
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

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

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

## Features

Expand Down
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ makedocs(;
"API" => "pages/api.md",
"FAQ" => "pages/faq.md",
],
repo="https://github.com/invenia/LibPQ.jl/blob/{commit}{path}#L{line}",
repo="https://github.com/iamed2/LibPQ.jl/blob/{commit}{path}#L{line}",
sitename="LibPQ.jl",
checkdocs=:exports,
linkcheck=true,
Expand All @@ -27,5 +27,5 @@ makedocs(;
)

deploydocs(;
repo="github.com/invenia/LibPQ.jl",
repo="github.com/iamed2/LibPQ.jl",
)
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

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

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

## Examples

Expand Down
2 changes: 1 addition & 1 deletion src/parsing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ end

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

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

0 comments on commit cb89002

Please sign in to comment.