Skip to content

Commit

Permalink
Merge remote-tracking branch 'dart-package/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav committed Dec 1, 2023
1 parent 24903c8 commit fe9c6e0
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 32 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:
run: dart test --platform=vm --coverage=coverage

- name: Format coverage
run: dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --in=coverage/test/ --out=stdout --report-on=lib/ --check-ignore
run: dart pub global run coverage:format_coverage --packages=.dart_tool/package_config.json --in=coverage/test/ --out=coverage/lcov.info --report-on=lib/ --lcov --check-ignore

- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]

- name: Pub publish (dry-run)
run: dart pub publish --dry-run
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
##### https://github.com/github/gitignore/blob/218a941be92679ce67d0484547e3e142b2f5f6f0/Dart.gitignore #####
##### https://github.com/github/gitignore/blob/4488915eec0b3a45b5c63ead28f286819c0917de/Dart.gitignore #####

# See https://www.dartlang.org/guides/libraries/private-files

Expand All @@ -13,6 +13,9 @@ pubspec.lock
# If you don't generate documentation locally you can remove this line.
doc/api/

# dotenv environment variables file
.env*

# Avoid committing generated Javascript files:
*.dart.js
*.info.json # Produced by the --dump-info flag.
Expand Down
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.3.7
## 0.4.0

- Added quantities
- ``
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Bhargav
Copyright (c) 2023 Bhargav

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# converter - Convert between different units of measurement

[![Converter](https://raw.githubusercontent.com/dkin-om/converter-dart/master/.img/converter.png)](https://github.com/dkin-om/converter-dart)
[![Converter](https://raw.githubusercontent.com/roddamnkit/converter/master/img/.converter.png)](https://github.com/roddamnkit/converter)

[![Version](https://img.shields.io/pub/v/converter)](https://pub.dev/packages/converter)
[![Build Status](https://travis-ci.com/dkin-om/converter-dart.svg?branch=master)](https://app.travis-ci.com/github/dkin-om/converter-dart)
[![Coverage Status](https://coveralls.io/repos/github/dkin-om/converter-dart/badge.svg)](https://coveralls.io/github/dkin-om/converter-dart)
[![License](https://img.shields.io/badge/license-MIT-green)](https://github.com/dkin-om/converter-dart/blob/master/LICENSE)
[![Build Status](https://github.com/roddamnkit/converter/actions/workflows/.github/workflows/dart.yml/badge.svg?branch=master)](https://github.com/roddamnkit/converter/actions)
[![Coverage Status](https://coveralls.io/repos/github/roddamnkit/converter/badge.svg)](https://coveralls.io/github/roddamnkit/converter)
[![License](https://img.shields.io/badge/license-MIT-green)](https://github.com/roddamnkit/converter/blob/master/LICENSE)

A Dart library for converting between different units of measurement for various quantities

Expand Down Expand Up @@ -229,4 +229,4 @@ See [documentation](https://pub.dev/documentation/converter) for more

## License

[MIT](https://github.com/dkin-om/converter-dart/blob/master/LICENSE)
[MIT](https://github.com/roddamnkit/converter/blob/master/LICENSE)
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ linter:
- prefer_conditional_assignment
- prefer_constructors_over_static_methods
- prefer_contains
- prefer_equal_for_default_values
- prefer_expression_function_bodies
- prefer_final_fields
- prefer_final_in_for_each
Expand Down
File renamed without changes
File renamed without changes
Empty file added img/.{package_name}.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added img/.{package_name}.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: converter
version: 0.3.7
version: 0.4.0
description: A Dart library for converting between different units of measurement for various quantities
repository: https://github.com/dkin-om/converter-dart.git
issue_tracker: https://github.com/dkin-om/converter-dart/issues
homepage: https://github.com/dkin-om/converter-dart#readme
repository: https://github.com/roddamnkit/converter.git
issue_tracker: https://github.com/roddamnkit/converter/issues
homepage: https://github.com/roddamnkit/converter#readme
environment:
sdk: '>=2.12.0 <3.0.0'
sdk: '>=2.13.0 <4.0.0'
dependencies:
equatable: ^2.0.0
invertible: ^2.0.0
dev_dependencies:
test: ^1.14.4
screenshots:
- description: converter package logo
path: .img/logo.png
path: img/logo.png
funding:
- https://github.com/sponsors/dkin-om
- https://ko-fi.com/dkinom

0 comments on commit fe9c6e0

Please sign in to comment.