From 7dc6c84379f10743e150f8f8b6d54fec9c111bd4 Mon Sep 17 00:00:00 2001 From: Jonas Siedentop Date: Wed, 31 Jan 2024 12:14:35 +0100 Subject: [PATCH 1/2] Prepare release 0.0.4 (#10) (#11) * Remove dartclub linter, * remove dartclup linter reference * Set version 0.0.4 Co-authored-by: Lukas Himsel --- CHANGELOG.md | 13 +++++++++++++ analysis_options.yaml | 31 +------------------------------ pubspec.yaml | 16 +++++++++------- 3 files changed, 23 insertions(+), 37 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 325b322..431fb5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,24 @@ + +## 0.0.4 + +- This is solely a quality release, without new functionality. + ## 0.0.3+2 + - bugfix: corrected the package name + ## 0.0.3+1 + - readme update with correct pub address + ## 0.0.3 + - Added benchmark + ## 0.0.2 + - Bugfix: missing condition for MultiPolygon + ## 0.0.1 - Initial version. Still very unstable. diff --git a/analysis_options.yaml b/analysis_options.yaml index 3645f17..572dd23 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,30 +1 @@ -# This file configures the static analysis results for your project (errors, -# warnings, and lints). -# -# This enables the 'recommended' set of lints from `package:lints`. -# This set helps identify many issues that may lead to problems when running -# or consuming Dart code, and enforces writing Dart using a single, idiomatic -# style and format. -# -# If you want a smaller set of lints you can change this to specify -# 'package:lints/core.yaml'. These are just the most critical lints -# (the recommended set includes the core lints). -# The core lints are also what is used by pub.dev for scoring packages. - -include: package:dartclub_lint/dart.yaml - -# Uncomment the following section to specify additional rules. - -# linter: -# rules: -# - camel_case_types - -# analyzer: -# exclude: -# - path/to/excluded/files/** - -# For more information about the core and recommended set of lints, see -# https://dart.dev/go/core-lints - -# For additional information about configuring this file, see -# https://dart.dev/guides/language/analysis-options +include: package:lints/recommended.yaml diff --git a/pubspec.yaml b/pubspec.yaml index a7051b3..fd7213d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,17 +1,19 @@ name: sweepline_intersections description: A small and fast module using a sweepline algorithm to detect intersections between polygons and/or polylines. -version: 0.0.3+2 +version: 0.0.4 + environment: - sdk: ">=2.17.5 <3.0.0" + sdk: ">=2.17.5 <4.0.0" homepage: https://github.com/dartclub/sweepline_intersections repository: https://github.com/dartclub/sweepline_intersections -dev_dependencies: - dartclub_lint: ^0.4.2 - test: ^1.16.0 - dependencies: - turf: ^0.0.7 + turf: ^0.0.8 dart_sort_queue: ^0.0.2+3 collection: ^1.16.0 benchmark: ^0.3.0 + +dev_dependencies: + lints: ^3.0.0 + test: ^1.16.0 + From c386eec7f135b13f1e7558c414a99ae9c11e1a94 Mon Sep 17 00:00:00 2001 From: Jonas Siedentop Date: Wed, 31 Jan 2024 12:24:43 +0100 Subject: [PATCH 2/2] release 0.0.4 (#13) * Prepare release 0.0.4 (#10) * Remove dartclub linter, * remove dartclup linter reference * Set version 0.0.4 * Prepare release 0.0.4 (#10) (#11) (#12) * Remove dartclub linter, * remove dartclup linter reference * Set version 0.0.4 Co-authored-by: Lukas Himsel --------- Co-authored-by: Lukas Himsel