Skip to content
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v1.5.0

* Removed `Port.command` usage for OTP26+ compatiblity
* Fixed prefix building when connect options provided.

## v1.4.0
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Statix

[![CI Status](https://github.com/lexmag/statix/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/lexmag/statix/actions/workflows/ci.yml)
[![Hex Version](https://img.shields.io/hexpm/v/statix.svg "Hex Version")](https://hex.pm/packages/statix)
[![CI Status](https://github.com/discord/statix/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/discord/statix/actions/workflows/ci.yml)
[![Hex Version](https://img.shields.io/hexpm/v/statix.svg "Hex Version")](https://hex.pm/packages/discord_statix)

This Discord fork of Statix exists for [discord/instruments](https://github.com/discord/instruments) - the following changes are applied to upstream [lexmag/statix](https://github.com/lexmag/statix):

- [OTP26 compability via Port.command replacement](https://github.com/cabify/statix/pull/1)
- Name change to discord_statix

Statix is an Elixir client for StatsD-compatible servers.
It is focused on speed without sacrificing simplicity, completeness, or correctness.
Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
defmodule Statix.Mixfile do
use Mix.Project

@version "1.4.0"
@source_url "https://github.com/lexmag/statix"
@version "1.5.0"
@source_url "https://github.com/discord/statix"

def project() do
[
app: :statix,
app: :discord_statix,
version: @version,
elixir: "~> 1.3",
deps: deps(),
Expand All @@ -31,7 +31,7 @@ defmodule Statix.Mixfile do

defp package() do
[
maintainers: ["Aleksei Magusev", "Andrea Leopardi"],
maintainers: ["Discord"],
licenses: ["ISC"],
links: %{"GitHub" => @source_url}
]
Expand Down
Loading