Skip to content

Commit

Permalink
Bump version to 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tcdude committed Oct 4, 2023
1 parent b4b4d2e commit 6c96b00
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = 'Tiziano Bettio'
__license__ = 'MIT'
__version__ = '0.0.4'
__version__ = '0.0.5'
__copyright__ = """
Copyright (c) 2021 Tiziano Bettio
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
4 changes: 2 additions & 2 deletions src/pyfastnoiselite/cppfastnoiselite.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Provides Cython header for "ext/FastNoise/Cpp/FastNoiseLite.h".

__author__ = 'Tiziano Bettio'
__license__ = 'MIT'
__version__ = '0.0.4'
__version__ = '0.0.5'
__copyright__ = """Copyright (c) 2021 Tiziano Bettio
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 Expand Up @@ -91,7 +91,7 @@ cdef extern from 'Cpp/FastNoiseLite.h':


cdef extern from 'FastNoiseLitePy.h':
cdef cppclass FastNoiseLitePy:
cdef cppclass FastNoiseLitePy:
FastNoiseLitePy() except +
void SetSeed(int)
void SetFrequency(float)
Expand Down
6 changes: 3 additions & 3 deletions src/pyfastnoiselite/pyfastnoiselite.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from .cppfastnoiselite cimport FastNoiseLitePy as _FNL

__author__ = 'Tiziano Bettio'
__license__ = 'MIT'
__version__ = '0.0.4'
__version__ = '0.0.5'
__copyright__ = """Copyright (c) 2021 Tiziano Bettio
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 Expand Up @@ -254,7 +254,7 @@ cdef class FastNoiseLite:
@property
def cellular_distance_function(self):
return CellularDistanceFunction(self._cellular_distance_function)

@cellular_distance_function.setter
def cellular_distance_function(self, func):
self._set_cellular_distance_function(func.value)
Expand All @@ -263,7 +263,7 @@ cdef class FastNoiseLite:
self._cellular_distance_function = func
deref(self.thisptr).SetCellularDistanceFunctionPy(func)

@property
@property
def cellular_return_type(self):
return CellularReturnType(self._cellular_return_type)

Expand Down

0 comments on commit 6c96b00

Please sign in to comment.