Skip to content

Commit e08d7c8

Browse files
committed
Bump/revise to version 3.6.0
There were too many deep changes with the Neo branch to bump the bugfix version instead of the minor version. Linux repository maintainers would not be too happy with that kind of massive change in a bugfix release.
1 parent 962eb28 commit e08d7c8

6 files changed

Lines changed: 16 additions & 15 deletions

File tree

avs_core/core/version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#define AVS_PROJECT AviSynth+
1010
#define AVS_MAJOR_VER 3
11-
#define AVS_MINOR_VER 5
12-
#define AVS_BUGFIX_VER 2
11+
#define AVS_MINOR_VER 6
12+
#define AVS_BUGFIX_VER 0
1313
#ifdef RELEASE_TARBALL
1414
#define AVS_FULLVERSION AVS_PPSTR(AVS_PROJECT) " " AVS_PPSTR(AVS_MAJOR_VER) "." AVS_PPSTR(AVS_MINOR_VER) "." AVS_PPSTR(AVS_BUGFIX_VER) " (" AVS_PPSTR(AVS_ARCH) ")"
1515
#else

avs_core/include/avisynth.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ class IScriptEnvironment {
14381438
// noThrow version of GetVar
14391439
virtual AVSValue __stdcall GetVarDef(const char* name, const AVSValue& def = AVSValue()) = 0;
14401440

1441-
// **** AVISYNTH_INTERFACE_VERSION 8 **** AviSynth+ 3.5.2-
1441+
// **** AVISYNTH_INTERFACE_VERSION 8 **** AviSynth+ 3.6.0-
14421442
virtual PVideoFrame __stdcall SubframePlanarA(PVideoFrame src, int rel_offset, int new_pitch, int new_row_size,
14431443
int new_height, int rel_offsetU, int rel_offsetV, int new_pitchUV, int rel_offsetA) = 0;
14441444

distrib/Readme/readme.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Avisynth+ v3.5.? (dev-20200322)
2-
-------------------------
1+
Avisynth+ v3.6.0
2+
----------------
33

44
Use the installer or copy files directly
55
- 64 bit OS:
@@ -31,8 +31,8 @@ Short info for plugin writers
3131

3232
(see readme_history.txt for details, syntax element, etc. They also appear on avisynth.nl)
3333

34-
20200331 3.5.? (dev)
35-
--------------------
34+
20200331 3.6.0
35+
--------------
3636
- New function:
3737
SetMaxCPU(string feature)
3838

@@ -218,8 +218,8 @@ Short info for plugin writers
218218
- Frame properties (still from Neo!)
219219
(experimental, we have planned it in Avs+, probably we'll try to follow the VapourSynth methods(?))
220220

221-
20200322 3.5.? (dev)
222-
--------------------
221+
20200322 3.6.0
222+
--------------
223223
- Fix: Multithreading enhancements and fixes (Nekopanda, from Neo fork)
224224
- Fix old ScriptClip (runtime filters) issue
225225
In this example "current_frame" variable was not seen by YDifferenceFromPrevious scripted within SubTitle

distrib/Readme/readme_history.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Source: https://github.com/AviSynth/AviSynthPlus
44

55
For a more logical (non-historical) arrangement of changes see readme.txt
66

7-
20200504 3.5.2 (dev)
7+
20200504 3.6.0
8+
--------------
89
- Scripts arrays (Info for plugin writers)
910
Plugin parameter definition: allow type+'.' and type+'*' syntax for named array parameters
1011

@@ -74,8 +75,8 @@ For a more logical (non-historical) arrangement of changes see readme.txt
7475

7576
- Test build published on (20200428)
7677

77-
20200428 3.5.2 (dev)
78-
--------------------
78+
20200428 3.6.0
79+
--------------
7980
- New: Format function
8081

8182
Syntax:

distrib/docs/english/source/avisynthdoc/FilterSDK/SDKNecessaries.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ AviSynth v2.5.x header will work in AviSynth 2.6.x and specific
6565
Avisynth+ version (though a bit late) changed version to
6666
``AVISYNTH_INTERFACE_VERSION = 7.``
6767

68-
From AviSynth+ version 3.5.2 new interface functions arrived
68+
From AviSynth+ version 3.6.0 new interface functions arrived
6969
along with frame properties support
7070
``AVISYNTH_INTERFACE_VERSION = 8.``
7171

distrib/docs/english/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '3.5'
58+
version = '3.6'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '3.5'
60+
release = '3.6'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

0 commit comments

Comments
 (0)