Skip to content

Commit

Permalink
chore: create makefile, update dependencies and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermecaldas committed Feb 21, 2024
1 parent 5c7e620 commit c36dd40
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 11 deletions.
50 changes: 43 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,56 @@
## 1.0.0
<!-- markdownlint-configure-file { "no-duplicate-heading": false } -->

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2024-02-20

### Added

- Makefile with commands to publish to pub.dev

### Changed

- Update dependencies
- Update environment constraints

## [1.0.0] - 2021-09-12

### Added

- Support to sound null safety

### Changed

- Update deprecated dependencies

## 0.1.2
## [0.1.2] - 2019-12-23

### Changed

- Update code to match Pedantic recommendations
- Fix examples

### Fixed

- Code examples

## 0.1.1+1
## [0.1.1+1] - 2019-11-24

### Changed

- Update dependencies
- Update CI/CD and coverage API

## 0.1.1
## [0.1.1] - 2018-11-04

### Fixed

- Fix error when n is out of bounds. Throws DixonException when not 3 < n =< 30
- Error when n is out of bounds. Throws DixonException when not 3 < n =< 30

## 0.1.0
## [0.1.0] - 2018-10-21

- Initial release
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
all: dry-run

publish:
dart pub publish

analyze:
dart analyze

dry-run:
dart pub publish --dry-run
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: q_calc_util
description: >
Dixon's Q Test calculator package for Dart. It makes it easy to identify an
outlier in a range between 3 and 30 double numbers
version: 1.0.0
version: 1.1.0
homepage: https://github.com/ChemisTechlabs/q_calc_util

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: "^3.0.0"

dev_dependencies:
lints: ^1.0.1
test: ^1.9.4
lints: ^3.0.0
test: ^1.25.2

0 comments on commit c36dd40

Please sign in to comment.