Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sad-Abd committed Dec 22, 2023
1 parent c25c88d commit 83b045e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Add a method 'vtk_export()' to create an unstructured grid vtk file from mesh.
## [0.1.3]
- Added the method `adjust_mesh_for_FEM` to generate FEM-compatible mesh from the QuadTreeMesh

## [0.1.2]
- Added a method 'vtk_export()' to create an unstructured grid vtk file from mesh.
- Resolved a bug related to adding midpoints to edges.

## [0.1.01] - 2023-7-17
## [0.1.1] - 2023-7-17

### Added
- Start using a Changelog.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

setuptools.setup(
name = "qtreemesh",
version = "0.1.2",
version = "0.1.3",
author = "Sad-Abd",
author_email = "abedisadjad@gmail.com",
description = "A package that creats quadtree mesh from an image",
description = "A package that creates quadtree mesh from an image",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/Sad-Abd/qtreemesh",
Expand All @@ -26,5 +26,5 @@
],
package_dir = {"": "src"},
packages = setuptools.find_packages(where="src"),
python_requires = ">=3.6"
python_requires = ">=3.7"
)

0 comments on commit 83b045e

Please sign in to comment.