Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.0.4 #10

Merged
merged 3 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
## 0.0.4
- This is solely a quality release, without new functionality.

## 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.
Expand Down
31 changes: 1 addition & 30 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -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
15 changes: 8 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
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
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

Loading