Skip to content

Commit 3bef8f3

Browse files
committed
Deprecation announcement
1 parent 30300e2 commit 3bef8f3

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/workflows/erlang.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: Erlang CI
22

3-
on: [push]
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
permissions:
10+
contents: read
411

512
jobs:
613

@@ -9,13 +16,11 @@ jobs:
916
runs-on: ubuntu-latest
1017

1118
container:
12-
image: erlang:22.2
19+
image: erlang:27.1
1320

1421
steps:
15-
- uses: actions/checkout@v1
22+
- uses: actions/checkout@v3
1623
- name: Compile
1724
run: rebar3 compile
1825
- name: Run tests
19-
run: rebar3 eunit
20-
- name: Run Geas
21-
run: GEAS_RANGE=">R14 <23" rebar3 geas
26+
run: rebar3 do eunit, ct

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
# jason [![Build Status](https://travis-ci.org/crownedgrouse/jason.svg?branch=master)](https://travis-ci.org/crownedgrouse/jason) #
1+
# jason ![Build status](https://github.com/crownedgrouse/jason/actions/workflows/erlang.yml/badge.svg) #
22

33
`jason` is a JSON encode/decode library written in Erlang.
44

5+
**DEPRECATION NOTE: as a JSON library is now part of ERLANG/OTP, this library will be replaced by another in close future.**
6+
7+
*`json` library will be used instead for parsing, encoding and decoding, but features will be kept. A new name will be chosen in order to be less confusing with the Elixir eponym libray.*
8+
59
## Overview ##
610

711
This project was mainly created for easy handling of JSON from/to Erlang records,

0 commit comments

Comments
 (0)