From d55b9ee89a2977146ac683c3b06233268d729b91 Mon Sep 17 00:00:00 2001 From: Miguel Nieto A <39246879+miguelnietoa@users.noreply.github.com> Date: Wed, 21 Dec 2022 15:40:32 -0500 Subject: [PATCH 1/2] Update build badge and lock to ubuntu-20.04 (#65) --- .github/workflows/CD.yml | 2 +- .github/workflows/CI.yml | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index f19ac99..4ed0b19 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -8,7 +8,7 @@ on: jobs: publish: name: Publish Release to HEX PM - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: otp: ['22.3'] diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d19d38e..765ff86 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,7 +10,7 @@ on: jobs: tests: name: Run tests - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: otp: ['22.3'] @@ -46,7 +46,7 @@ jobs: finish: needs: tests - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Set BUILD_NUMBER for Pull Request event if: github.event_name == 'pull_request' diff --git a/README.md b/README.md index 9e5de94..80ba58a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Elixir XDR -![Build Badge](https://img.shields.io/github/workflow/status/kommitters/elixir_xdr/ElixirXDR%20CI/master?style=for-the-badge) +![Build Badge](https://img.shields.io/github/actions/workflow/status/kommitters/elixir_xdr/CI.yml?branch=main&style=for-the-badge) [![Coverage Status](https://img.shields.io/coveralls/github/kommitters/elixir_xdr?style=for-the-badge)](https://coveralls.io/github/kommitters/elixir_xdr) [![Version Badge](https://img.shields.io/hexpm/v/elixir_xdr?style=for-the-badge)](https://hexdocs.pm/elixir_xdr) ![Downloads Badge](https://img.shields.io/hexpm/dt/elixir_xdr?style=for-the-badge) From 6fc739ab7ad66528df33ab4b0102df5fbaf4149c Mon Sep 17 00:00:00 2001 From: Miguel Nieto A <39246879+miguelnietoa@users.noreply.github.com> Date: Wed, 21 Dec 2022 15:59:17 -0500 Subject: [PATCH 2/2] Prepare release v0.3.5 (#66) --- CHANGELOG.md | 3 +++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2db7373..2a1eeb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.3.5 (21.12.2022) +* Update build badge and lock to ubuntu-20.04. + ## 0.3.4 (25.10.2022) * Enable ExCoveralls with parallel builds. diff --git a/README.md b/README.md index 80ba58a..a23a2ad 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ XDR is an open data format, specified in [RFC 4506](http://tools.ietf.org/html/r ```elixir def deps do [ - {:elixir_xdr, "~> 0.3.4"} + {:elixir_xdr, "~> 0.3.5"} ] end ``` diff --git a/mix.exs b/mix.exs index b5b1791..b3b0bff 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule XDR.MixProject do use Mix.Project @github_url "https://github.com/kommitters/elixir_xdr" - @version "0.3.4" + @version "0.3.5" def project do [